Skip to content
Mastering Go, published by Packt
Branch: master
Clone or download
Latest commit 9dac518 Oct 25, 2018
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
ch01 Update cla.go Apr 11, 2018
ch02 Update panicRecover.go Apr 24, 2018
ch03
ch04 Add files via upload Mar 15, 2018
ch05 Add files via upload Mar 15, 2018
ch06 Add files via upload Mar 15, 2018
ch07
ch08
ch09 Add files via upload Mar 15, 2018
ch10 Corrected small bug Oct 25, 2018
ch11 Add files via upload Mar 15, 2018
ch12
ch13 Update RPCserver.go Apr 17, 2018
LICENSE Initial commit Mar 15, 2018
README.md Update README.md May 22, 2018

README.md

Mastering Go

This is the code repository for Mastering Go, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

The Go programming language, often referred to as Golang (albeit wrongly), is really making strides, with some masterclass developments, architected by the greatest programming minds. Tobias Lutke, CEO of Shopify, recently quoted as saying “Go will be the server language of the future”, powerful words, with much ambition. Go programmers are in high demand, but more controversially, Go takes the stage, where C and Unix programmers previously led the way.

The growth of the Go language has seen it become the means by which systems, networking, web, and cloud applications are implemented. Comfortable with syntax, you’ll benefit by mastering the use of the libraries and utilise its features, speed, and efficiency, for which the Go ecology is justly famous.

You already know a little Go syntax and you’ve written some small projects, most Go programmers face the difficulty of having to integrate their Golang skills with production code. Typical introductions to Go programming, often stop short of this transition, the author continue on, showing you just how to tackle this.

Offering a compendium of Go, the book begins with an account of how Go has been implemented, also, the reader will benefit from a dedicated chapter, an in-depth account of concurrency, systems and network programming, imperative for modern-day native cloud development.

Instructions and Navigations

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

package main 
 
import ( 
    "fmt" 
) 
 
func main() { 
    fmt.Println("This is a sample Go program!") 
} 

Related Products

You can’t perform that action at this time.