This repository provides the downloadable exercise solution programs for the book, "The Go Programming Language"; see http://www.gopl.io.
These exercise solution programs are licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
You can download, build, and run the programs with the following commands:
$ export GOPATH=$HOME/gobook # choose workspace directory
$ go get gopl-solutions/ch1/1.1 # fetch, build, install
$ $GOPATH/bin/1.1 a b c # run
=> $GOPATH/bin/1.1 a b c
or you can reference it at gitbook.