文件名称:golang-adventures:学习 GoLang
文件大小:15KB
文件格式:ZIP
更新时间:2024-07-04 11:37:24
Go
GoLang 冒险 尽管我很喜欢 ZendFramework 2,但总的来说,我对 PHP 有点厌倦了。 在不断追求不断提升我的游戏水平的过程中,我决定开始学习 GoLang 以用于我的后端网络工作。 这个 repo 托管了我编写的 Go 代码的随机片段集合,以便让自己熟悉语言语法和 API。 ###阅读清单 How to Write Go Code A Tour of Go The Go Programming Language Specification 必须阅读 Backus Naur Form。 可能需要在某个时候重新阅读这篇文章。 Effective Go 还看了一些关于 Golang 模式的 Google.io 演讲 (不记得我有没有完成这个) ###其他目标 查找 IDE :Atom + Go 命令行工具 探索 Go 附带的测试、基准测试和示例框架 找个
【文件预览】:
golang-adventures-master
----hello-world-backwards()
--------hello-world-backwards.go(158B)
----newton-sqrt()
--------sqrt.go(385B)
----a-tour-of-go()
--------var-examples.go(4KB)
--------loop-examples.go(214B)
--------README.md(175B)
--------package-example-2.go(197B)
--------conditional-examples.go(799B)
--------package-example-1.go(179B)
--------func-examples.go(1024B)
--------more-struct-examples.go(3KB)
----LICENSE(1KB)
----README.md(1KB)
----hello-world()
--------hello.go(272B)
----web-server()
--------app.go(197B)
--------about_handler.go(179B)
--------routes.go(339B)
--------server.go(3KB)
--------welcome_handler.go(277B)
--------info_handler.go(177B)
----stringutils()
--------reverse_test.go(364B)
--------reverse.go(180B)
----.gitignore(10B)
----concurrency()
--------logger.go(191B)
--------message.go(275B)
--------app.go(361B)
--------queue.go(601B)