aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-09-27 15:28:44 +0100
committerGinger Bill <bill@gingerbill.org>2016-09-27 15:28:44 +0100
commitb59333294204fd3e298483aea09bc4fab589de94 (patch)
tree121982b60135ab503653b592f20b7df0e5893f50 /code
parent349badcf177a618f30949bb0b273fdc19ce95abe (diff)
Minimal Dependency Map: Only build what is needed
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin4
1 files changed, 3 insertions, 1 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 282adcb67..be7426d9f 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,3 +1,5 @@
-main :: proc() {
+#import "fmt.odin"
+main :: proc() {
+ fmt.println("Hello")
}