diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-09-27 15:28:44 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-09-27 15:28:44 +0100 |
| commit | b59333294204fd3e298483aea09bc4fab589de94 (patch) | |
| tree | 121982b60135ab503653b592f20b7df0e5893f50 /code | |
| parent | 349badcf177a618f30949bb0b273fdc19ce95abe (diff) | |
Minimal Dependency Map: Only build what is needed
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 4 |
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") } |