GOROOT编译器位置
GOPATH项目位置
GOPATH路路径最好只设置⼀一个,所有的项⽬目都放到GOPATH的src⽬目录下
package main import ( "fmt" ) func main() { fmt.Println("hello world") }