Files
moxa/_test/for9.go

13 lines
106 B
Go

package main
func main() {
for false {
println("nok")
break
}
println("bye")
}
// Output:
// bye