Nearly implement dynamics map, missing insertion

This commit is contained in:
Ginger Bill
2017-02-06 01:21:23 +00:00
parent 00c7489157
commit 9f2d9b596d
6 changed files with 329 additions and 88 deletions

View File

@@ -13,9 +13,10 @@
main :: proc() {
Value :: type f32;
m: map[int]Value;
m[123] = 345.0;
x, ok := m[123];
if ok {
reserve(^m, 16);
defer free(m);
// m[123] = 345.0;
if x, ok := m[123]; ok {
fmt.println(x);
}