v/examples/submodule/mymodules/main_functions.v

6 lines
67 B
V

module mymodule
pub fn add_xy(x int, y int) int {
return x + y
}