Files
Odin/code/demo.odin
2016-10-30 19:20:47 +00:00

12 lines
138 B
Odin

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