Skip to content

Instantly share code, notes, and snippets.

@vjeantet
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vjeantet/1a50aa8c52e7e0c4e470 to your computer and use it in GitHub Desktop.
Save vjeantet/1a50aa8c52e7e0c4e470 to your computer and use it in GitHub Desktop.
Named Type problem
package main
import (
"fmt"
)
type counter int
func main() {
var c counter
fmt.Printf("value=%d,type=%T", c, c)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment