package main import "fmt" func main() { fmt.Println(sayHi("Mike")) } func sayHi(name string) string { return fmt.Sprintf("Hi %s", name) }