├── .gitignore ├── CNAME ├── Gemfile ├── README.md ├── _assets └── stylesheets │ ├── main.scss │ ├── reset.scss │ └── typo.scss ├── _book ├── chapter-01-gettting-started.md ├── chapter-02-your-first-program.md ├── chapter-03-types.md ├── chapter-04-variables.md ├── chapter-05-control-structures.md ├── chapter-06-arrays-slices-maps.md ├── chapter-07-functions.md ├── chapter-08-pointers.md ├── chapter-09-structs-and-interfaces.md ├── chapter-10-concurrency.md ├── chapter-11-packages.md ├── chapter-12-testing.md ├── chapter-13-core-packages.md └── chapter-14-next-steps.md ├── _config.yml ├── _includes ├── advert.html ├── counters.html ├── disqus.html ├── footer.html ├── head.html ├── header.html ├── prevnext.html └── ribbon.html ├── _layouts ├── chapter.html └── default.html ├── _plugins └── ext.rb ├── fabfile.py ├── img ├── chapter-01 │ ├── 01.png │ ├── 02.png │ ├── 03.png │ └── 04.png ├── chapter-06 │ └── 01.png ├── chapter-07 │ ├── 01.png │ └── 02.png ├── chapter-13 │ └── 01.png └── cover.png └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | golang-book.ru -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/README.md -------------------------------------------------------------------------------- /_assets/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_assets/stylesheets/main.scss -------------------------------------------------------------------------------- /_assets/stylesheets/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_assets/stylesheets/reset.scss -------------------------------------------------------------------------------- /_assets/stylesheets/typo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_assets/stylesheets/typo.scss -------------------------------------------------------------------------------- /_book/chapter-01-gettting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-01-gettting-started.md -------------------------------------------------------------------------------- /_book/chapter-02-your-first-program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-02-your-first-program.md -------------------------------------------------------------------------------- /_book/chapter-03-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-03-types.md -------------------------------------------------------------------------------- /_book/chapter-04-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-04-variables.md -------------------------------------------------------------------------------- /_book/chapter-05-control-structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-05-control-structures.md -------------------------------------------------------------------------------- /_book/chapter-06-arrays-slices-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-06-arrays-slices-maps.md -------------------------------------------------------------------------------- /_book/chapter-07-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-07-functions.md -------------------------------------------------------------------------------- /_book/chapter-08-pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-08-pointers.md -------------------------------------------------------------------------------- /_book/chapter-09-structs-and-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-09-structs-and-interfaces.md -------------------------------------------------------------------------------- /_book/chapter-10-concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-10-concurrency.md -------------------------------------------------------------------------------- /_book/chapter-11-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-11-packages.md -------------------------------------------------------------------------------- /_book/chapter-12-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-12-testing.md -------------------------------------------------------------------------------- /_book/chapter-13-core-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-13-core-packages.md -------------------------------------------------------------------------------- /_book/chapter-14-next-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_book/chapter-14-next-steps.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/advert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_includes/advert.html -------------------------------------------------------------------------------- /_includes/counters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_includes/counters.html -------------------------------------------------------------------------------- /_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_includes/disqus.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/prevnext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_includes/prevnext.html -------------------------------------------------------------------------------- /_includes/ribbon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_includes/ribbon.html -------------------------------------------------------------------------------- /_layouts/chapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_layouts/chapter.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_plugins/ext.rb: -------------------------------------------------------------------------------- 1 | require 'jekyll-assets' 2 | -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/fabfile.py -------------------------------------------------------------------------------- /img/chapter-01/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/chapter-01/01.png -------------------------------------------------------------------------------- /img/chapter-01/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/chapter-01/02.png -------------------------------------------------------------------------------- /img/chapter-01/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/chapter-01/03.png -------------------------------------------------------------------------------- /img/chapter-01/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/chapter-01/04.png -------------------------------------------------------------------------------- /img/chapter-06/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/chapter-06/01.png -------------------------------------------------------------------------------- /img/chapter-07/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/chapter-07/01.png -------------------------------------------------------------------------------- /img/chapter-07/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/chapter-07/02.png -------------------------------------------------------------------------------- /img/chapter-13/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/chapter-13/01.png -------------------------------------------------------------------------------- /img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/img/cover.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxpoletaev/golang-book/HEAD/index.html --------------------------------------------------------------------------------