package main import "core:fmt" main :: proc() { m: map[string]string = nil v, ok := m["test"] fmt.printf("v: %s, ok: %v\n", v, ok) delete_key(&m, "test") fmt.println("did not crash") }