mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
8 lines
79 B
Odin
8 lines
79 B
Odin
add :: proc(x, y : int) -> (int, int) {
|
|
return x+y, 1;
|
|
}
|
|
|
|
main :: proc() {
|
|
|
|
}
|