package hellogomod func SayHello(name string) string { return "Hello, " + name + "!" } func SayHi(name string) string { return "Hi, " + name + "!" }