×
×
Correct!
Multi line comments in Go are written with a special character, which one?
package main
import ("fmt")
func main() {
@(2) These lines
are comments @(2)
fmt.Println("Hello World!")
}
package main
import ("fmt")
func main() {
/* These lines
are comments */
fmt.Println("Hello World!")
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?