Last Updated: February 25, 2016
·
726
· wstucco

Introduction to Go(lang)

I recently wrote an introduction to the Go programming language, covering

  • reasons why Go was created
  • installation procedure
  • language features
  • command line tools
  • basic of the syntax
  • type system and OO

The code samples are focused on writing HTTP middleware.

You can read the original post here

package main

import "fmt"

func main() {
    fmt.Println("Go and read it!")
}