diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-02-19 12:38:49 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-02-19 12:38:49 +0000 |
| commit | 6fdcbefe5d488deea2825d908ff36af624e170d2 (patch) | |
| tree | b85f96e764bb61ee9cc428864f716a79ccdf1b2b /code/demo.odin | |
| parent | 3cec2550d9b15eb56b8dd1b42a30b9f47ace0b4c (diff) | |
Unexported struct fields
Diffstat (limited to 'code/demo.odin')
| -rw-r--r-- | code/demo.odin | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/code/demo.odin b/code/demo.odin index b8bf9bf6d..dc93ab9e9 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -8,13 +8,6 @@ #import "halloc.odin"; main :: proc() { - - m: map[int]int; - m[123] = 312; - fmt.println(m[123]); - delete(m, 123); - fmt.println(m[123]); - /* /* Version 0.1.1 |