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