package main func main() { dict := map[string]string{} dict["truc"] = "machin" println(dict["truc"]) } // Output: // machin