This repo includes my solutions to "The Go Programming Language" book exercises. I use go version 1.24.1.
Code examples from the book are available to download at gopl.io. go get
has since been deprecated for this use and go install
is used instead.
$ export GOBIN=$HOME/gobook/bin # choose workspace directory
$ go install gopl.io/ch1/helloworld@latest # fetch, build, install
$ $GOBIN/helloworld # run
Hello, 世界