package main import ( "fmt" ) func Hallo(gruss string) { fmt.Println("Hallo", gruss) } func main() { // Go-Routine go Hallo("Welt") }