diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-17 12:01:53 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-17 12:01:53 +0100 |
| commit | 2deb2f8eebc42dd52ef8b78811c59e1b07f54f21 (patch) | |
| tree | 6450f88b93b155bd1db798ee11f8ac03e7cc1f84 /code | |
| parent | 3fa398ec43ddc6fc40562087fd8ab87dc5292499 (diff) | |
Declaration grouping uses () rather than {}; Fix some problem with compilation on *nix
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/code/demo.odin b/code/demo.odin index 0db3e0b55..e42429953 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -1,4 +1,6 @@ -import "fmt.odin"; +import ( + "fmt.odin"; +) proc main() { let program = "+ + * - /"; |