Junior — Senior
What output will program №40 produce
livecode
Task condition
Determine what text will be output to the console after executing the following Go code.
import (
"fmt"
)
func main(){
var m map[string]int
fmt.Println(m["foo"])
m["foo"] = 42
fmt.Println(m["foo"])
}