Files
Odin/examples/test.odin
T

8 lines
79 B
Odin

add :: proc(x, y : int) -> (int, int) {
return x+y, 1;
}
main :: proc() {
}