aboutsummaryrefslogtreecommitdiff
path: root/code/demo.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-07-19 22:17:57 +0100
committerGinger Bill <bill@gingerbill.org>2017-07-19 22:17:57 +0100
commitd233706a2d3c5f1d68622eada8e62823c7d992b1 (patch)
tree7795a7020051b64937f0d7d9ce94b6f6be9ffa57 /code/demo.odin
parentf1ab17ed4ef68a7591f8aa786e3c02d33d038f05 (diff)
Fix minor parsing bug with procedure return types
Diffstat (limited to 'code/demo.odin')
-rw-r--r--code/demo.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/demo.odin b/code/demo.odin
index ce2a160a1..4d87bbfec 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,6 +1,6 @@
import "fmt.odin";
main :: proc() {
- v, ok := fmt.string_to_enum_value(Allocator.Mode, "FreeAll");
- if ok do assert(v == Allocator.Mode.FreeAll);
+ fmt.println("Hellope!");
}
+