gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/map.go (about) 1 package main 2 3 type Dict map[string]string 4 5 func main() { 6 dict := make(Dict) 7 dict["truc"] = "machin" 8 println(dict["truc"]) 9 } 10 11 // Output: 12 // machin