v2 / vlib / v / tests / project_with_c_code_3 / mod1 / wrapper.js.v
6 lines · 5 sloc · 123 bytes · 0da00cc457215a9269c21b1f95e7691f9df0e64d
Raw
1module mod1
2
3// Note: the function here, overrides the one from wrapper.c.v
4pub fn vadd(a int, b int) int {
5 return 2003
6}
7