> vim hallo_gopher.go package main import ( "fmt" ) func main() { fmt.Println("Hallo Gopher!") } > go build hallo_gopher.go > ./hallo_gopher Hallo Gopher!