Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save pablocattaneo/524d0abb12fb421ef2a1e38901f8f65e to your computer and use it in GitHub Desktop.
// delete syntax: delete(mapVariable, key)
myMap := make(map[string]int)
myMap["key1"] = 9
delete(myMap, "key1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment