10 lines
250 B
Go
10 lines
250 B
Go
package greetings
|
|
|
|
import "fmt"
|
|
|
|
// Hello returns a greeting for the named person.
|
|
func Hello(name string) string {
|
|
// Return a greeting that embeds the name in a message.
|
|
message := fmt.Sprintf("Hi, %v. Welcome!", name)
|
|
return message
|
|
}
|