diff options
| author | zhiayang <zhiayang@gmail.com> | 2017-02-02 04:20:33 +0800 |
|---|---|---|
| committer | zhiayang <zhiayang@gmail.com> | 2017-02-02 04:20:33 +0800 |
| commit | 864310e3da059371ac7345ee3bf900a6055f26b4 (patch) | |
| tree | bd4e5dcdf07545e1a0a5c0187473444b8e7ead36 /code | |
| parent | 502e63b9c50e71735c7989e59155a490bca991d2 (diff) | |
oh boy, basic osx/unix support
Diffstat (limited to 'code')
| -rw-r--r-- | code/test.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/code/test.odin b/code/test.odin index 18fc36c16..bcd4ddc57 100644 --- a/code/test.odin +++ b/code/test.odin @@ -5,10 +5,10 @@ thing :: proc() { }*/ -#import "fmt.odin" as format +#import "fmt.odin"; -thing :: proc() { - format.println("Hello2!") +main :: proc() { + fmt.println("hello, world!"); } |