编辑代码

package main
import "fmt"
func main () {
    m := make(map[int]string)
    m[1] = "ok"
    a := m[1]
    fmt.Println(a)
}