diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-09-22 23:18:29 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-09-22 23:18:29 +0100 |
| commit | ee0aa7b9de907e70e00ca3ab891087c2ee86a31b (patch) | |
| tree | 76029a9a80b1ea563c9ccc750f07bc2377359090 /code/test.odin | |
| parent | 2e506b7e6ebf527f94ac5faaecb54771ed137c48 (diff) | |
Fix assert; exporting rules
Diffstat (limited to 'code/test.odin')
| -rw-r--r-- | code/test.odin | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/code/test.odin b/code/test.odin index 48f992ffa..8748ab3b5 100644 --- a/code/test.odin +++ b/code/test.odin @@ -1,38 +1,36 @@ -#import "fmt.odin" +/*#import "fmt.odin" thing :: proc() { - fmt.println("Hello!") -} + fmt.println("Hello1!") +}*/ -/* -#import "fmt.odin" as fmt + +#import "fmt.odin" as format thing :: proc() { - fmt.println("Hello!") + format.println("Hello2!") } -*/ -/* -#import "fmt.odin" as . + +/*#import "fmt.odin" as . thing :: proc() { - println("Hello!") + println("Hello3!") } -*/ -/* -#import "fmt.odin" as _ + +*/ +/*#import "fmt.odin" as _ thing :: proc() { - // println("Hello!") + // println("Hello4!") } */ - /* #load "fmt.odin" thing :: proc() { - println("Hello!") -} -*/ + println("Hello5!") +}*/ + |