Skip to content

Latest commit

 

History

History

Learning-Go-Programming

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

#Learning Go Programming This is the code repository for Learning Go Programming, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish. ##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("Hello, World!")
}


$> go version
go version go1.6.1 linux/amd64

To follow the examples in this book, you will need Go version 1.6 or later. Go supports architectures including AMD64, x386, and ARM running the following operating systems: Windows XP (or later) Mac OSX 10.7 (or later) Linux 2.6 (or later) FreeBSD 8 (or later)

##Related Products