Skip to content

Instantly share code, notes, and snippets.

@mkmik
Created June 6, 2011 20:57
Show Gist options
  • Save mkmik/1011084 to your computer and use it in GitHub Desktop.
Save mkmik/1011084 to your computer and use it in GitHub Desktop.
generalized
func main() {
var x *int = nil
var t interface{} = x
fmt.Printf("%t\n", t == nil) // prints "false"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment