Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Help with go level 2 lesson 2

Strings, Runes, Numbers & Boolean*


*This is my code :

package main

import "fmt"

func main() {
fmt.Println("Rainbow")
fmt.Println('S')
fmt.Println(true)
fmt.Println(420)
}

*

*this is my output


Rainbow
83
true
420
by

2 Answers

sam5epi0l
Hi, What error message you faced while submitting this code?
studytonightofficial
This is indeed the correct code and it worked for me. I am now on Level 3 of GO lang course. Can you share what error did you get?

Login / Signup to Answer the Question.