Last active
January 26, 2026 14:52
-
-
Save pablocattaneo/be129f5fe0e2674b8c95240672960093 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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