aboutsummaryrefslogtreecommitdiff
path: root/code/demo.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-06-25 23:41:46 +0100
committerGinger Bill <bill@gingerbill.org>2017-06-25 23:41:46 +0100
commit362a11878283eea69cf5a18b7f05c964643a7a64 (patch)
treef3fd27c626ccbbfa323530ed5fec495c38dd3a3c /code/demo.odin
parent3ab481df17d35ac0ac66f0bb619885e43dc060f1 (diff)
Remove "overloading" bug of para-poly-procs
Diffstat (limited to 'code/demo.odin')
-rw-r--r--code/demo.odin8
1 files changed, 1 insertions, 7 deletions
diff --git a/code/demo.odin b/code/demo.odin
index d14de8f90..ea88e84b8 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,13 +1,7 @@
-import (
- "fmt.odin";
-)
-
+import "fmt.odin";
proc main() {
- var ptr = new(int);
- ptr^ = 123;
- fmt.println(ptr^);
}
/*