diff options
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!"); } |