mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
4 lines
98 B
Text
4 lines
98 B
Text
fn test() { println('foo') } test() fn test2(a int) { println(a) } test2(42)
|
|
===output===
|
|
foo
|
|
42
|