package main
import "fmt"
func main() {
arr := map[string]string {"a": "go",
"b": "c++",
"c": "php",
"d": "python",
}
// for {key}, {value} := range {list}
for key, value := range arr {
fmt.Println(key, " - ", value)
}
}
/*
run:
a - go
b - c++
c - php
d - python
*/