Alten Playground Golang
- Download from https://golang.org/dl/
- Atom (https://atom.io/) + go-plus package
- Visual Studio Code + vscode-go extension (https://marketplace.visualstudio.com/items?itemName=lukehoban.Go)
- Gogland (https://www.jetbrains.com/go/)
- https://gobyexample.com/
- https://tour.golang.org/welcome/1
- Even more resources https://dave.cheney.net/resources-for-new-go-programmers
go get github.com/ajdevries/huffman
export GOPATH=`go env GOPATH`
cd $GOPATH/src/github.com/ajdevries/huffman/server
go build
go test ./... -race
export GOPATH=`go env GOPATH`
cd $GOPATH/src/github.com/ajdevries/huffman/server
go build && ./server
export GOPATH=`go env GOPATH`
cd $GOPATH/src/github.com/ajdevries/huffman/client
go build && ./client