gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/for11.go (about) 1 package main 2 3 func main() { 4 a := 0 5 for ; true; a++ { 6 println("nok", a) 7 break 8 } 9 println("bye", a) 10 } 11 12 // Output: 13 // nok 0 14 // bye 0