6 lines
89 B
Go
6 lines
89 B
Go
package hellogomod
|
|
|
|
func SayHello(name string) string {
|
|
return "Hello, " + name + "!"
|
|
}
|