mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
8 lines
78 B
V
8 lines
78 B
V
module main
|
|
|
|
import mod1
|
|
|
|
fn main(){
|
|
res := mod1.vadd(1,2)
|
|
println( res )
|
|
}
|