Skip to content

Instantly share code, notes, and snippets.

@comtom
Created September 27, 2018 17:52
Show Gist options
  • Select an option

  • Save comtom/a09f06b63efc8ca1cda5b047024591a4 to your computer and use it in GitHub Desktop.

Select an option

Save comtom/a09f06b63efc8ca1cda5b047024591a4 to your computer and use it in GitHub Desktop.
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