hellogomod/hello/hello.go
Yuki 8af8fe0979
feat: Add more packages.
There are two packages in the module.
2025-06-14 11:41:04 +08:00

10 lines
153 B
Go

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