Files
Odin/examples/test.odin
T

7 lines
55 B
Odin

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