Go的Proxy问题

设置GOPROXY代理:

1
go env -w GOPROXY=https://goproxy.cn,direct

设置GOPRIVATE来跳过私有库,比如常用的Gitlab或Gitee,中间使用逗号分隔:

1
go env -w GOPRIVATE=*.gitlab.com,*.gitee.com
Read more

快速入门Go

Hello Golang

1
2
3
4
5
6
package main
import "fmt"

func main() {
fmt.Print("Hello Golang")
}

这是最简单的Go程序,可以看到我们处于main包,并且导入了fmt包,里面有基本的函数比如Print函数,用于输出到控制台。

Read more
Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×