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

10 lines
126 B
V

module main
import v.tests.project_with_c_code.mod1
fn main() {
res := mod1.vadd(1, 2)
println(res)
assert res == 1003
}