mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-15 15:44:04 +00:00
Nearly implement dynamics map, missing insertion
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user