aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorzhiayang <zhiayang@gmail.com>2017-02-02 04:20:33 +0800
committerzhiayang <zhiayang@gmail.com>2017-02-02 04:20:33 +0800
commit864310e3da059371ac7345ee3bf900a6055f26b4 (patch)
treebd4e5dcdf07545e1a0a5c0187473444b8e7ead36 /code
parent502e63b9c50e71735c7989e59155a490bca991d2 (diff)
oh boy, basic osx/unix support
Diffstat (limited to 'code')
-rw-r--r--code/test.odin6
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!");
}