mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
9 lines
118 B
V
9 lines
118 B
V
module simplemodule
|
|
|
|
pub fn iadd(x int, y int) int {
|
|
return x + y
|
|
}
|
|
|
|
pub fn imul(x int, y int) int {
|
|
return x * y
|
|
}
|