Hello, World
// Package we're in (we always have to be in one). package main // We're using this one. import "fmt" func main() { fmt.Printf("Hello, world!\n") }
The usual starting place. Things to note: