├── README.md ├── doc.go ├── index.html └── weixin-golang-china.jpg /README.md: -------------------------------------------------------------------------------- 1 | # Go语言圣经中文版 2 | 3 | - 直播公告:每周四晚7点,微信视频号“光谷码农”:跟着柴大一起重读[《Go语言圣经》](https://github.com/golang-china/gopl-zh),欢迎参与! 4 | - *KusonStack一站式可编程配置技术栈(Go): https://github.com/KusionStack/kusion* 5 | - *KCL 配置编程语言(Rust): https://github.com/KusionStack/KCLVM* 6 | - *凹语言™: https://github.com/wa-lang/wa* 7 | 8 | ---- 9 | 10 | 原先的 gopl-zh 因为[DMCA](https://github.com/github/dmca/blob/master/2016-02-03-TheGoProgrammingLanguage.md)问题已经删除,新的项目已经转为私有仓库,但是这里依然可以接收Issue提交。 11 | 12 | 这是重生后的地址(主要用于维护Issue和镜像列表): 13 | 14 | - https://gopl-zh.github.io 15 | - https://github.com/gopl-zh 16 | - https://github.com/golang-china/gopl-zh 17 | 18 | 译者信息: 19 | 20 | - 译者:柴树杉,Github [@chai2010](https://github.com/chai2010),Twitter [@chaishushan](https://twitter.com/chaishushan) 21 | - 译者:Xargin, [https://github.com/cch123](https://github.com/cch123) 22 | - 译者:CrazySssst, [https://github.com/CrazySssst](https://github.com/CrazySssst) 23 | - 译者:foreversmart, [https://github.com/foreversmart](https://github.com/foreversmart), 24 | 25 | ## 关注微信公众号(光谷码农/guanggu-coder) 26 | 27 | ![](https://chai2010.cn/advanced-go-programming-book/weixin-guanggu-coder-logo.png) 28 | 29 | 加入微信群: 公众号底部菜单扫码进入 30 | 31 | ## 常见缩写 32 | 33 | - gopl: 《The Go Programming Language》, http://gopl.io/ 34 | - gopl-zh: gopl 的中文版本,https://github.com/golang-china/gopl-zh 35 | - D&K: gopl的作者 Alan A. A. Donovan · Brian W. Kernighan 36 | 37 | ## 镜像列表 38 | 39 | - https://gopl-zh.github.io 40 | - https://golang-china.github.io/gopl-zh 41 | - https://docs.hacknode.org/gopl-zh 42 | - https://books.studygolang.com/gopl-zh 43 | - https://wizardforcel.gitbooks.io/gopl-zh 44 | 45 | ---- 46 | 47 | ## 开源图书推荐 48 | 49 | - [《Go语言高级编程》](https://github.com/chai2010/advanced-go-programming-book): https://github.com/chai2010/advanced-go-programming-book 50 | - [《Go语法树入门》](https://github.com/chai2010/go-ast-book): https://github.com/chai2010/go-ast-book 51 | - [《µGo语言实现——从头开发一个迷你Go语言编译器》](https://github.com/chai2010/ugo-compiler-book): https://github.com/chai2010/ugo-compiler-book 52 | -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 Golang-China. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // 6 | // Go圣经中文版. 7 | // 8 | // 项目主页: https://github.com/golang-china/gopl-zh 9 | // 10 | // 原版官网: http://gopl.io 11 | // 12 | package gopl_zh 13 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | README 6 | 322 | 323 |

Go语言圣经中文版

324 |

原先的 gopl-zh 因为DMCA问题已经删除,新的项目在Bitbucket上(私有仓库),但是这里依然可以接收Issue提交,需要私下交流的请转QQ群(531508541)。

325 |

这是重生后的地址:

326 | 331 |

常见缩写:

332 | 337 |

镜像列表:

338 | 345 | 346 | -------------------------------------------------------------------------------- /weixin-golang-china.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-china/gopl-zh/3b9ad7670d28b42671cc0640273a6468ac85991a/weixin-golang-china.jpg --------------------------------------------------------------------------------