mirror of
https://github.com/vlang/v.git
synced 2025-08-05 18:57:45 -04:00
6 lines
68 B
V
6 lines
68 B
V
module mymodules
|
|
|
|
pub fn add_xy(x int, y int) int {
|
|
return x + y
|
|
}
|