Files
Odin/examples/test.odin
T
2016-07-31 23:01:42 +01:00

7 lines
55 B
Odin

main :: proc() {
a, b := 1, 2;
a++;
b++;
a += b;
}