Add core:encoding/ini to examples/all

This commit is contained in:
gingerBill
2024-07-19 12:03:34 +01:00
parent f226eba342
commit ba3d7ba5d3
2 changed files with 3 additions and 1 deletions

View File

@@ -113,7 +113,7 @@ load_map_from_string :: proc(src: string, allocator: runtime.Allocator, options
new_key = strings.to_lower(key) or_return
delete(old_key) or_return
}
pairs[new_key], err = unquote(value) or_return
pairs[new_key] = unquote(value) or_return
}
return
}