diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-09-14 12:00:04 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-09-14 12:00:04 +0100 |
| commit | a60e6bedd963b9de4207e5bf8dba13e5c596dd1b (patch) | |
| tree | 4db37211e35de8f51f329909e8b181fad01ca089 /code/runtime.odin | |
| parent | 1147e17c134da1d5bb93d0754888ca1d0271a0f4 (diff) | |
Begin work on modules - No codegen!!!
Diffstat (limited to 'code/runtime.odin')
| -rw-r--r-- | code/runtime.odin | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/code/runtime.odin b/code/runtime.odin index 4e79039d1..89d3f7861 100644 --- a/code/runtime.odin +++ b/code/runtime.odin @@ -1,5 +1,9 @@ -#load "win32.odin" -#load "print.odin" +#global_scope + +// TODO(bill): Remove #import in runtime.odin +#import "win32.odin" +#import "file.odin" +#import "print.odin" // IMPORTANT NOTE(bill): Do not change the order of any of this data // The compiler relies upon this _exact_ order |