https://github.com/xingdl2007/gopl-solutions
:book: The Go Programming Language Book's Solutions
https://github.com/xingdl2007/gopl-solutions
golang programming-language
Last synced: 8 days ago
JSON representation
:book: The Go Programming Language Book's Solutions
- Host: GitHub
- URL: https://github.com/xingdl2007/gopl-solutions
- Owner: xingdl2007
- Created: 2017-10-30T03:57:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T23:14:54.000Z (about 2 years ago)
- Last Synced: 2024-07-30T20:02:06.941Z (over 1 year ago)
- Topics: golang, programming-language
- Language: Go
- Homepage: https://xingdl2007.gitbooks.io/gopl-soljutions
- Size: 839 KB
- Stars: 32
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Go Programming Language Book's Solutions
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.