Go 静态类型声明 Go Hello World 实例 Go 动态类型声明 Go 静态类型声明 package main import "fmt" func main() { var x float64 x = 20.0 fmt.Println(x) fmt.Printf("x is of type %T\n", x) } Go Hello World 实例 Go 动态类型声明