An online book focusing on Go syntax/semantics and runtime related things.
Go 101 in Leanpub store | Go 101 in Apple Books store | Go 101 in Kindle store | eBooks | update history | wiki
Go 101 is a book focusing on Go syntax/semantics and all kinds of runtime related things. It tries to help gophers gain a deep and thorough understanding of Go. This book also collects many details of Go and in Go programming. The book is expected to be helpful for both beginner and experienced Go programmers.
This book is one book in Go 101 book series. The series include some other books:
- Go Optimizations 101 provides some code performance optimization tricks, tips, and suggestions.
- Go Details & Tips 101 collects many details and provides several tips in Go programming.
To get latest news of Go 101 books, please follow the official twitter account @go100and1 and join the Go 101 Slack space.
Install, Update, and Read Locally
If you use Go toolchain v1.16+, then you don't need to clone the project respository:
### Install or update.
$ go install github.com/go101/go101@latest
### Read. (GOBIN path, defaulted as GOPATH/bin, should be set in PATH)
$ go101
Server started:
http://localhost:55555 (non-cached version)
http://127.0.0.1:55555 (cached version)
If you use Go toolchain v1.15-, or you would make some modifications (for contribution, etc.):
### Install.
$ git clone https://github.com/go101/go101
cd go101
### Update. Enter the Go 101 project directory (which
# contains the current `README.md` file), then run
$ git pull
### Read. Enter the Go 101 project directory, then run
$ go run .
Server started:
http://localhost:55555 (non-cached version)
http://127.0.0.1:55555 (cached version)
The start page should be opened in a browser automatically. If it is not opened, please visit http://localhost:55555.
Options:
-port=1234
-theme=light # or dark (default)
Translations are also welcome. Here is a list of the ongoing translation projects:
No comments:
Post a Comment