GO学习系列1——Hello,world

1954 阅读 · 2020年5月27日 22:47 更新 · 作者:clannadhh


package main //把这个test.go 归属到main
import "fmt" //引入一个包 fmt

func main() {
	// 输出hello
	fmt.Println("hello world")
}