mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-20 08:26:47 +00:00
6 lines
64 B
Odin
6 lines
64 B
Odin
import "test"
|
|
|
|
add :: proc(a, b: int) -> int {
|
|
return a + b;
|
|
}
|