解析:
以下代码打印变量的类型
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)