aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-10-30 17:49:30 +0000
committerGinger Bill <bill@gingerbill.org>2016-10-30 17:49:30 +0000
commitca311c4a59a34c0b516a415df37e7dd9d9fb65bf (patch)
tree8dedc0eef2950c77120b31787f8ba433b0e551a7 /code
parent3ec67853e1359015f516aac346760b299d261015 (diff)
Begin work on the Interpreter
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin3
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
}