Junior — Senior
What is the output of the program? (example 65)
livecode
Task condition
Determine which output will appear in the console after executing the following Go program:
import ("fmt")
func main(){
m := map[string]int{"a": 1, "b": 2, "c": 3}
for k, v := range m {
fmt.Println(k, v)
}
}