package main import ( "fmt" ) func main() { fmt.Println(getContent()) } func getContent() string { return "Hello, world!" }