Remix.run Logo
atombender 3 days ago

The zero value of a map is indeed nil in Go: This prints true (https://go.dev/play/p/8dXgo8y2KTh):

    var m map[string]int
    println(m == nil)
binary132 3 days ago | parent [-]

Ok, true!