Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Last active January 26, 2026 15:04
Show Gist options
  • Select an option

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

Select an option

Save pablocattaneo/82b6867513ef8a224b3af8ea2532afc5 to your computer and use it in GitHub Desktop.
// maps.Equal(map1, map2) bool
myMap2 := map[string]string{
"name": "Alice",
"country": "Wonderland",
}
fmt.Println("Second map:", myMap2)
myMap3 := map[string]string{
"name": "Alice",
"country": "Wonderland",
}
if maps.Equal(myMap2, myMap3) {
fmt.Println("Maps are equal")
} else {
fmt.Println("Maps are not equal")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment