aboutsummaryrefslogtreecommitdiff
path: root/code/demo.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-06-26 19:42:32 +0100
committerGinger Bill <bill@gingerbill.org>2017-06-26 19:42:32 +0100
commitd0d8da8c084e0c6306aad5741e320c1a74bd4f7d (patch)
tree4119f35d0e712cb207a631c64ab6a83be35faae4 /code/demo.odin
parentd1365b3466e732d6b93888b561e5582d8eb68978 (diff)
Revert demo
Diffstat (limited to 'code/demo.odin')
-rw-r--r--code/demo.odin7
1 files changed, 1 insertions, 6 deletions
diff --git a/code/demo.odin b/code/demo.odin
index ea88e84b8..da37c37f7 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,11 +1,7 @@
import "fmt.odin";
proc main() {
-
-}
-
-/*
- let program = "+ + * - /";
+ var program = "+ + * - /";
var accumulator = 0;
for token in program {
@@ -20,5 +16,4 @@ proc main() {
fmt.printf("The program \"%s\" calculates the value %d\n",
program, accumulator);
-*/
}