Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save pablocattaneo/be129f5fe0e2674b8c95240672960093 to your computer and use it in GitHub Desktop.

Select an option

Save pablocattaneo/be129f5fe0e2674b8c95240672960093 to your computer and use it in GitHub Desktop.
// syntax: mapLiteral := map[keyType]valueType{ key1: value1, key2: value2, }
myMap2 := map[string]string{
"name": "Alice",
"country": "Wonderland",
}
fmt.Println("Second map:", myMap2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment