v/vlib/v/tests/project_with_c_code/main.v

9 lines
78 B
V

module main
import mod1
fn main() {
res := mod1.vadd(1, 2)
println(res)
}