Files
moxa/_test/if5.go

13 lines
101 B
Go

package main
func main() {
if true {
println("ok")
}
println("bye")
}
// Output:
// ok
// bye