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