第一个Go程序 Go Hello World 实例 第一个Go程序 package main import "fmt" func main() { fmt.Println("Hello, World!") } Go Hello World 实例