This repository is a record of my progress through my copy of "The Go Programming Language". Each top level folder corresponds to a chapter of the book, with subfolders for the subsection of the chapter.
Note that any comments in the code are for my personal understanding as I went through the exercises.
To run any exercise:
- Install Golang on your computer. On Mac or Linux, you can install Go via homebrew:
brew install golang
- Execute any of the completed exercises, for example:
go run chapter-one/1-hello-world/hello-world.go