mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 18:32:22 -07:00
9 lines
81 B
Odin
9 lines
81 B
Odin
main :: proc() {
|
|
x : int = 15;
|
|
if x > 0 {
|
|
x = 123;
|
|
} else {
|
|
x = 321;
|
|
}
|
|
}
|