https://www.zhihu.com/question/486786946/answer/2723663432
 注意一定要安装最新版,否则不容易debug
//main.go
package main //说明hello.go这个文件在main这个包中
import "fmt" //导入内置包,可以使用其中函数等
func main() {
	fmt.Println("Hello World!")
} 
 上面弄完之后.
 go mod init aaa
 go mod tidy
 然后就可以debug了.










