Menu
×
×
Correct!
Exercise:Comments in Go are written with a special character, which one?.
package main
import ("fmt")
func main() {
// this is a comment
fmt.Println("Hello World!")
}
Not CorrectClick here to try again. Correct!Next ❯package main import ("fmt") func main() {this is a comment fmt.Println("Hello World!") } |