×
×
Correct!
Print "Hello World" if x is equal to y.
package main
import ("fmt")
func main() {
var x = 50
var y = 50
@(2) x @(2) y {
fmt.Print("Hello World")
}
}
package main
import ("fmt")
func main() {
var x = 50
var y = 50
if x == y {
fmt.Print("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?