├── Go └── src │ └── golang-book │ ├── chapter2 │ └── main.go │ ├── chapter3 │ ├── for.go │ ├── input.go │ ├── main.go │ └── switch.go │ ├── chapter6 │ ├── arrays.go │ ├── maps.go │ └── slice.go │ └── chapter7 │ ├── closure.go │ ├── defer.go │ └── functions.go ├── README.md ├── bin └── helloworld └── src └── local1 ├── helloworld └── helloworld.go /Go/src/golang-book/chapter2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter2/main.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter3/for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter3/for.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter3/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter3/input.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter3/main.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter3/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter3/switch.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter6/arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter6/arrays.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter6/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter6/maps.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter6/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter6/slice.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter7/closure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter7/closure.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter7/defer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter7/defer.go -------------------------------------------------------------------------------- /Go/src/golang-book/chapter7/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/Go/src/golang-book/chapter7/functions.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/README.md -------------------------------------------------------------------------------- /bin/helloworld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/bin/helloworld -------------------------------------------------------------------------------- /src/local1/helloworld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/src/local1/helloworld -------------------------------------------------------------------------------- /src/local1/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwasham/practice-go/HEAD/src/local1/helloworld.go --------------------------------------------------------------------------------