hellogomod/hello.go
Yuki 0b8c840f11
feat: Add SayHello.
Add SayHello function for test.
2025-06-14 00:01:56 +08:00

6 lines
89 B
Go

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