greetings.go 249 B

12345678910
  1. package greetings
  2. import "fmt"
  3. // Hello returns a greeting for the named person.
  4. func Hello(name string) string {
  5. // Return a greeting that embeds the name in a message.
  6. message := fmt.Sprintf("Hi, %v. Welcome!", name)
  7. return message
  8. }