mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-02 11:12:31 +00:00
12 lines
138 B
Odin
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)
|
|
}
|