diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-07-19 22:17:57 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-07-19 22:17:57 +0100 |
| commit | d233706a2d3c5f1d68622eada8e62823c7d992b1 (patch) | |
| tree | 7795a7020051b64937f0d7d9ce94b6f6be9ffa57 /code | |
| parent | f1ab17ed4ef68a7591f8aa786e3c02d33d038f05 (diff) | |
Fix minor parsing bug with procedure return types
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 4 |
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!"); } + |