Golang tutorials: Difference between revisions

From wikinotes
(Created page with " {| class="wikitable" |- | golang specification (best) || https://go.dev/ref/spec |- | effective go || https://go.dev/doc/effective_go |- | zetcode || https://zetcode.com/all/#go |- |}")
 
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:


= Learning Go =
<blockquote>
{| class="wikitable"
{| class="wikitable"
|-
|-
Line 9: Line 11:
|-
|-
|}
|}
</blockquote><!-- Learning Go -->
= Reference Codebases =
<blockquote>
{| class="wikitable"
|-
| https://github.com/go-xorm/xorm ||
|-
| https://github.com/nanomsg/mangos || logging, homemade assertions, test structure
|-
| https://github.com/apex/log ||
|-
| https://github.com/bitfield/script || ADT-like 'Pipe' object
|-
|}
</blockquote><!-- Reference Codebases -->

Latest revision as of 23:37, 14 December 2022

Learning Go

golang specification (best) https://go.dev/ref/spec
effective go https://go.dev/doc/effective_go
zetcode https://zetcode.com/all/#go

Reference Codebases

https://github.com/go-xorm/xorm
https://github.com/nanomsg/mangos logging, homemade assertions, test structure
https://github.com/apex/log
https://github.com/bitfield/script ADT-like 'Pipe' object