This repo is a rich collection of example code & used as starting point for discussing many of the topics while teaching Go. It is maintained and managed by @algogrit.
mkdir -p $GOPATH/src/github.com/AgarwalConsulting
git clone https://github.com/AgarwalConsulting/Go-Training.git $GOPATH/src/github.com/AgarwalConsulting/Go-Training
cd $GOPATH/src/github.com/AgarwalConsulting/Go-Training
(or)
go install github.com/AgarwalConsulting/Go-Training@latest
- Russ Cox's Tour of Go
- Go Concurrency Patterns by Rob Pike (Builds a scalable, fault-tolerant search engine in 10-30 lines of Go code)