mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 02:42:22 -07:00
7 lines
76 B
Odin
7 lines
76 B
Odin
#import "fmt.odin"
|
|
|
|
main :: proc() {
|
|
x, y: i64 = 123, 321
|
|
y = x + 2 - y
|
|
}
|