v2 / vlib / v / slow_tests / repl / print_and_fn_call.repl
8 lines · 8 sloc · 114 bytes · a40df55bf5d6a074bd1f29e29715ff1482de7437
Raw
1println('hello')
2fn abc(x int) { println(x) }
3abc(123);abc(456);println('hello')
4===output===
5hello
6123
7456
8hello
9