v/vlib/compiler/tests/repl/function.repl
2020-01-20 23:04:26 +01:00

4 lines
98 B
Text

fn test() { println('foo') } test() fn test2(a int) { println(a) } test2(42)
===output===
foo
42