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

6 lines
68 B
V

module submodule
pub fn sub_xy(x int, y int) int {
return x - y
}