package main // Here's an example Go program. import "fmt" func main() { fmt.Println("Hello world") // It prints `Hello world`. } /* // Put this code in hello-world.go, then use $ go run hello-world.go // `go run` to run it. Hello world */