This is the obligatory first post where I could talk about what my plans are for the site. The web is littered with these type of blog posts and then very little or nothing comes after. I won’t do that here because we don’t yet know if this site will suffer a similar fate. Instead, here is Hello World implemented in Go!

package main

import "fmt"

func main() {
    fmt.Println("hello world")
}