Go Programming Language

Table of Contents

Some title

package main

import (
      "fmt"
      "math"
)

func main() {
      fmt.Println(math.pi)
}

Writing web-servers in Go

Useful packages

bindata

Overview

Allows you to include basically any kind of data into your build. Very useful for:

  • embedding templates in the binary file