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