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