github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/cont.gno (about) 1 package main 2 3 func main() { 4 for i := 0; i < 10; i++ { 5 if i < 5 { 6 continue 7 } 8 println(i) 9 } 10 } 11 12 // Output: 13 // 5 14 // 6 15 // 7 16 // 8 17 // 9