Sobes.tech
Junior — Senior

What will the output of program №48 show

livecode

Task condition

What will be the output when running the following code?

func main() {
    a := map[string]int{}
    b := make(map[string]int, 10)

    a["test"]++
    b["test"]++

    fmt.Println(a["test"])
    fmt.Println(b["test"])
}