diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-12-09 16:28:31 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-12-09 16:28:31 +0000 |
| commit | a6f8c9d6e097b282415a9d4502b3ec4e62e304d6 (patch) | |
| tree | 716ad005be787859b7f17bfa37103f2f0587f628 /code | |
| parent | de9016b7d06edd62a1b0a7aa3c031e604fa6d7a7 (diff) | |
v0.0.4 - `odin build_dll`, atomic.odin, sync.odin
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/demo.odin b/code/demo.odin index 8c2f7a90d..41bf9b40b 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -1,5 +1,6 @@ #import "win32.odin" #import "fmt.odin" +#import "sync.odin" Dll :: struct { Handle :: type rawptr @@ -50,6 +51,5 @@ main :: proc() { } some_thing := (proc_addr as proc()) - fmt.println(some_thing) some_thing() } |