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