diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-02-01 20:59:14 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-02-01 20:59:14 +0000 |
| commit | 205f4664f8da99d530ef6c1d13419859f3b4ed86 (patch) | |
| tree | e42b1294ff21c3b1072cb039a7c454ca808e90d5 /code | |
| parent | c6133587d1bdf7ae723beb8c3a3b27b472bf2d7a (diff) | |
Update code from OSX merge to be consistent with the rest of the code
Remove some dead code whilst I was here too :P
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/code/demo.odin b/code/demo.odin index 805a9690b..c486abbee 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -11,6 +11,8 @@ main :: proc() { i: int; + fmt.println("Hellope!"); + x: [dynamic]f64; defer free(x); append(^x, 2_000_000.500_000, 3, 5, 7); |