aboutsummaryrefslogtreecommitdiff
path: root/code/demo.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-09-15 00:53:00 +0100
committerGinger Bill <bill@gingerbill.org>2016-09-15 00:53:00 +0100
commitb6cb4f4d145bdc87aecf8edd678d025b22faff57 (patch)
tree887b01bc5628b8f5bb642667dcd92bb800c1eb33 /code/demo.odin
parentbd365e5176f3bc5f5e249d1a0763520e2973c2ec (diff)
#file #line directives
Diffstat (limited to 'code/demo.odin')
-rw-r--r--code/demo.odin6
1 files changed, 4 insertions, 2 deletions
diff --git a/code/demo.odin b/code/demo.odin
index f40a8e625..8ac345de6 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,5 +1,5 @@
#import "fmt.odin" as fmt
-#import "game.odin" as game
+// #import "game.odin" as game
test_proc :: proc() {
fmt.println("Hello?")
@@ -7,6 +7,8 @@ test_proc :: proc() {
main :: proc() {
+ x := 0
// fmt.println("% % % %", "Hellope", true, 6.28, {4}int{1, 2, 3, 4})
- game.run()
+ fmt.println("%(%)", #file, #line)
+ // game.run()
}