What happens when code executes m["labex"] = 1 immediately after var m map[string]int?
m["labex"] = 1
var m map[string]int
It automatically allocates the map and stores the entry.
The assignment is silently ignored and execution continues.
It fails to compile because string keys cannot map to integers.
It panics because the declaration leaves m as a nil map.
m