6 lines
81 B
Go
6 lines
81 B
Go
|
package greet
|
||
|
|
||
|
func Hello(name string) string {
|
||
|
return "Hello, " + name + "!"
|
||
|
}
|