diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-12-19 14:03:59 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-12-19 14:03:59 +0000 |
| commit | 478d63424fb99c368a0cfae88704b2c903956a1d (patch) | |
| tree | 6e46bc62dd94772ff4fc07b84e93c7bf7d237681 /code | |
| parent | ac1566762bdfea1e9cf27dfdad393352398bbab0 (diff) | |
Remove `enum` for favour of Go-style enumerations
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/code/demo.odin b/code/demo.odin index 61e1d5217..409fc3837 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -29,8 +29,8 @@ const ( EB; ); + proc main() { - fmt.println(X, Y, Z); - fmt.println(A, B, C); - fmt.println(KB, MB, GB, TB, PB, EB); + var x = 123; + fmt.println(x); } |