在开始写代码之前,我们已经把golang语言开发的环境搭建好,我们就可以开始学代码了。我们可以从最简单的Hello world 开始 package main import ( "fmt" ) func main() { fmt.Println("Hello world") }