Created
September 27, 2018 17:52
-
-
Save comtom/a09f06b63efc8ca1cda5b047024591a4 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
| var firstVar interface{} | |
| firstVar = "this is a string" | |
| firstString, ok := firstVar.(string) | |
| if (!ok) { | |
| fmt.Printf("firstString is not a string, do something about it! Value:'%v'\n", firstString) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment