diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-02-01 17:52:55 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-02-01 17:52:55 +0000 |
| commit | 4e7082a68dd5261c3c36eccf92a62a0ce84995a8 (patch) | |
| tree | 01b5d690870b28b43a5e5c0c434495e56059babc /code | |
| parent | 502e63b9c50e71735c7989e59155a490bca991d2 (diff) | |
Change internals of `context`; Disable `immutable`
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/code/demo.odin b/code/demo.odin index 61516e5b7..805a9690b 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -1,6 +1,16 @@ #import "fmt.odin"; +#import "atomic.odin"; +#import "hash.odin"; +#import "math.odin"; +#import "mem.odin"; +#import "opengl.odin"; +#import "os.odin"; +#import "sync.odin"; +#import "utf8.odin"; main :: proc() { + i: int; + x: [dynamic]f64; defer free(x); append(^x, 2_000_000.500_000, 3, 5, 7); |