学习路线
国外大神版
https://github.com/Alikhll/golang-developer-roadmap/blob/master/i18n/zh-CN/ReadMe-zh-CN.md
gocn版
下载地址:https://github.com/gocn/knowledge
基础篇
https://book.itsfun.top/gopl-zh/
(适合零基础看)
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
开源仓库地址(可以自己构建):https://github.com/gopl-zh/gopl-zh.github.com
高级篇
https://chai2010.cn/advanced-go-programming-book/
(适合有一定的编程基础的人看)