1、创建目录树2、新建project目录3、新建helloworld.go文件4、填入代码 1、创建目录树创建如下目录树,然后用VsCode软件打开 2、新建project目录新建项目目录以helloworld来命名 3、新建helloworld.go文件 4、填入代码package mainimport "fmt"func main(){ fmt.Println("hello world!")}