Stdle #51 · 2026-07-27
What does this log?
Read the snippet and type its exact console output. You get 4 attempts — each wrong guess unlocks a hint.
package main import "fmt" func main() { var m map[string]int defer func() { if r := recover(); r != nil { fmt.Println("recovered:", r) } }() m["a"] = 1 fmt.Println(m)}Maps