1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/tests/project_with_c_code/main.v

9 lines
78 B
V
Raw Normal View History

2020-02-06 19:38:35 +03:00
module main
import mod1
fn main(){
res := mod1.vadd(1,2)
println( res )
}