package main import "fmt" func main() { fmt.Println(hello("Quintor")) } func hello(someone string) string { return fmt.Sprintf("Hello %s", someone) }