解析:
以下代码打印变量的类型
var a, b, c = 3, 4, "foo" fmt.Printf("a is of type %T\n", a) fmt.Printf("b is of type %T\n", b) fmt.Printf("c is of type %T\n", c)