go # hello.go package main import "fmt" func main() { fmt.Println("Hello, World") } # run source go run hello.go # build go build hello.go