diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-07-19 12:15:21 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-07-19 12:15:21 +0100 |
| commit | 6113164211d5bd010ea324594d69668e5732817d (patch) | |
| tree | e31315edbdaefdc698dae9d5f78b1555207d97f4 /code/demo.odin | |
| parent | 4db462a703d506f2ef23a16921a23a10115feacb (diff) | |
Change union layout to store type info rather than an integer; ternary expression for types with constant condition
Diffstat (limited to 'code/demo.odin')
| -rw-r--r-- | code/demo.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/demo.odin b/code/demo.odin index 11ffec8ce..4b88bfea1 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -1,5 +1,5 @@ import "fmt.odin"; main :: proc() { - fmt.println("Hellope, World!"); + fmt.println("Hellope!"); } |