> vim main.go package main import ( "fmt" ) func main() { fmt.Println("Hallo Go-Projekt!") } > go build main.go > ./main Hallo Go-Projekt!