diff options
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/code/demo.odin b/code/demo.odin index f2844f0b5..0899cc111 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -1,5 +1,6 @@ #import "fmt.odin" main :: proc() { - + x, y: i64 = 123, 321 + y = x + 2 - y } |