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

9 lines
61 B
Plaintext
Raw Normal View History

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