aboutsummaryrefslogtreecommitdiff
path: root/code/test.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-09-22 23:18:29 +0100
committerGinger Bill <bill@gingerbill.org>2016-09-22 23:18:29 +0100
commitee0aa7b9de907e70e00ca3ab891087c2ee86a31b (patch)
tree76029a9a80b1ea563c9ccc750f07bc2377359090 /code/test.odin
parent2e506b7e6ebf527f94ac5faaecb54771ed137c48 (diff)
Fix assert; exporting rules
Diffstat (limited to 'code/test.odin')
-rw-r--r--code/test.odin34
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!")
+}*/
+