package main import ( "fmt" ) func main() { fmt.Println(hello()) fmt.Println(hello()) fmt.Println(hello()) } func hello() string { return "Hello go" }