1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/submodule/mymodules/main_functions.v
2021-06-05 12:45:23 +03:00

6 lines
67 B
V

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