https://studygolang.com/dl
根据自己电脑系统进行下载安装更改go env 文件,开启 module,更换镜像源
安装vs code 或 goland 编辑器go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn
二.创建go文件 xxx.go go 代码块
package main
import "fmt"
func main() {
fmt.Println("hello world");
}
打开终端输入
go run xxx.go 执行文件
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)