KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
learn-golang
★ 13
Open GitHub ↗
go语言学习笔记
Download README (.md)
Explore Similar Repositories
tabchi
:
No description available.
RetroPage
:
A lightweight homepage to quickly get you where you need to go.
vim-code-runner
:
Similar code-runner plugin for vim
row_boat
:
Import CSVs into your ActiveRecord models
magento2-catalog-sortby
:
Free Magento 2 Extension to Add Advance Sorting Options (Popularity and Rating) to Catalog | TheCodingTutor
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
learn-golang
?
Download (.md)
# Go语言学习笔记 本仓库是记录个人golang学习过程中的笔记和练习示例。 ## Go语言简介   Go语言在2007年由Robert Griesemer、Rob Pike 和 Ken Thompson 在 Google开始开发,并且在2009年正式发布,如今被称为云计算的C语言。Go语言有如下几个特点:开放源代码、静态类型和编译型、跨平台、自动垃圾回收、原生的并发编程、完善的构建工具、代码风格强制统一、多编程范式、高效的编程和运行、丰富的标标准库。 ## Go语言环境及开发工具 本人使用开发环境如下: * [Github Wiki](https://github.com/zhuzhenyu/lean-golang/wiki/Mac-Golang-%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83) * OS X EI Capian 10.11.6 * Golang 1.8.1 [Download](https://golang.org/dl/) * Visual Studio Code 1.12.2 [Download](https://code.visualstudio.com/) * 编辑器扩展 * [Go](https://marketplace.visualstudio.com/items?itemName=lukehoban.Go) * Git ## Go语言明星应用 * [docker](https://www.docker.com) 开源的应用容器引擎 * [Etcd](https://coreos.com/etcd/docs/latest/) 分布式键值存储引擎 * [tidb](https://pingcap.com/index-zh) 新一代开源分布式 NewSQL 数据库 兼容MySQL语法 * [beego](https://beego.me/)一个使用 Go 的思维来帮助您构建并开发 Go 应用程序的开源框架 ## Go语言学习资料 * [Go语言官网](https://golang.org) * [Go by Example](https://gobyexample.com) * [Go语言圣经(中文版)](http://docs.plhwin.com/gopl-zh/index.html) * [GitHub Awesome Go](https://github.com/avelino/awesome-go) * [astaxie build web application with golang](https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/preface.md) * [Go语言标准库](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example) * [雨痕 Go语言学习笔记](https://github.com/qyuhen/book) * [Go并发编程实战](https://github.com/gopcp/example.v2)