Neurohazard
暮雲煙月,皓首窮經;森羅萬象,如是我聞。

Golang 快速入门

wpadmin~July 11, 2019 /System Management

Golang 快速入门

命令记录

运行测试

// 运行
go run helloworld.go

// 编译
go build helloworld.go

// 拉取 包到 $GOPATH
go get -v github.com/levigross/grequests

参考资料

进阶

Go 语言圣经
https://yar999.gitbooks.io/gopl-zh/content/ch1/ch1-01.html
https://books.studygolang.com/gopl-zh/

The Go Programing Language 原文
https://www.gopl.io/

Go github repo wiki
https://github.com/golang/go/wiki
https://github.com/golang/go/wiki/Modules

Effective Go
https://bingohuang.gitbooks.io/effective-go-zh-en/content/02_Formatting.html

Leave a Reply

Your email address will not be published. Required fields are marked *