v/vlib/compiler/tests/repl/conditional_blocks/for.repl

9 lines
61 B
Plaintext

for i := 0; i < 4; i++ {
println(i)
}
===output===
0
1
2
3