Created
September 20, 2022 13:44
-
-
Save wesleymatosdev/b44469cfa1ebab0b87af15f519f081a1 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
| package main | |
| import "fmt" | |
| func main() { | |
| var m map[string]int | |
| if m == nil { | |
| fmt.Println("Map is nil") | |
| } | |
| // If you try to set a key on this map, the execution will throw | |
| // m["key"] = 1 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment