9 lines
95 B
Go
9 lines
95 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
v := 42
|
|
fmt.Printf("v is of type %T\n", v)
|
|
}
|