mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-15 07:31:26 -07:00
7 lines
55 B
Odin
7 lines
55 B
Odin
main :: proc() {
|
|
a, b := 1, 2;
|
|
a++;
|
|
b++;
|
|
a += b;
|
|
}
|