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

6 lines
67 B
V
Raw Normal View History

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