imprime le type de valeur à Golang

// printType method prints the type of a value in golang
func printType() {
	x := 12
	fmt.Printf("%T", x)	// output: int
}
gopher072