mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
5 lines
68 B
V
5 lines
68 B
V
module mymodules
|
|
|
|
pub fn add_xy(x int, y int) int {
|
|
return x + y
|
|
}
|