aboutsummaryrefslogtreecommitdiff
path: root/code/demo.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-09-17 11:39:08 +0100
committerGinger Bill <bill@gingerbill.org>2016-09-17 11:40:00 +0100
commit67694c0df07c758effbc7dcb10c76a2b2bffe5d0 (patch)
treed1b0d26cfbb81fba0b16410856dcf21a3f274a69 /code/demo.odin
parenteb424bb315a880bf52fe843733445dfb502c1525 (diff)
VarDecl and ConstDecl split; error, warning, et al. now global
Diffstat (limited to 'code/demo.odin')
-rw-r--r--code/demo.odin3
1 files changed, 1 insertions, 2 deletions
diff --git a/code/demo.odin b/code/demo.odin
index f1667bd66..9fea042ff 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -2,7 +2,6 @@
main :: proc() {
init :: proc(c: ^pn.Core) {
-
}
step :: proc(c: ^pn.Core) {
@@ -11,5 +10,5 @@ main :: proc() {
}
}
- // pn.run(init, step)
+ pn.run(init, step)
}