1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/tests/repl/conditional_blocks/for.repl
2020-01-20 23:04:26 +01:00

9 lines
61 B
Plaintext

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