diff options
Diffstat (limited to 'v_windows/v/old/vlib/v/tests/repl/conditional_blocks/for.repl')
-rw-r--r-- | v_windows/v/old/vlib/v/tests/repl/conditional_blocks/for.repl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/v/tests/repl/conditional_blocks/for.repl b/v_windows/v/old/vlib/v/tests/repl/conditional_blocks/for.repl new file mode 100644 index 0000000..2f3f50c --- /dev/null +++ b/v_windows/v/old/vlib/v/tests/repl/conditional_blocks/for.repl @@ -0,0 +1,8 @@ +for i := 0; i < 4; i++ { + println(i) +} +===output=== +0 +1 +2 +3 |