diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2017-02-01 20:31:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-01 20:31:57 +0000 |
| commit | c6133587d1bdf7ae723beb8c3a3b27b472bf2d7a (patch) | |
| tree | fd080deab099e74ec5f50841c6a8b5b5b8b5c3c4 /code/test.odin | |
| parent | 4e7082a68dd5261c3c36eccf92a62a0ce84995a8 (diff) | |
| parent | 5516e80ab775d1100beca7847e10520eae4b151c (diff) | |
Merge pull request #16 from zhiayang/master
Basic, but sketchy, but somewhat usable, non-windows support
Diffstat (limited to 'code/test.odin')
| -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!"); } |