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