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