Files
Odin/code/demo.odin
T
2016-10-30 17:49:30 +00:00

7 lines
76 B
Odin

#import "fmt.odin"
main :: proc() {
x, y: i64 = 123, 321
y = x + 2 - y
}