This commit is contained in:
Andrew Hurley 2022-11-12 15:21:15 +08:00
parent ee2e28c11d
commit 173a1a39ec
1 changed files with 22 additions and 1 deletions

View File

@ -2,6 +2,8 @@ package greetings
import "fmt" import "fmt"
import "errors" import "errors"
import "math/rand"
import "time"
// Hello returns a greeting for the named person. // Hello returns a greeting for the named person.
func Hello(name string) (string,error) { func Hello(name string) (string,error) {
@ -10,8 +12,27 @@ func Hello(name string) (string,error) {
return "", errors.New("empty name") return "", errors.New("empty name")
} }
// Return a greeting that embeds the name in a message. // Return a greeting that embeds the name in a message.
message := fmt.Sprintf("Hi, %v. Welcome!", name) message := fmt.Sprintf(randomFormat(), name)
# message := fmt.Sprintf("Hi, %v. Welcome!", name)
return message, nil return message, nil
} }
// init sets initial values for variables used in the function.
func init() {
rand.Seed(time.Now().UnixNano())
}
// randomFormat returns one of a set of greeting messages. The returned
// message is selected at random.
func randomFormat() string {
// A slice of message formats.
formats := []string{
"Hi, %v. Welcome!",
"Great to see you, %v!",
"Hail, %v! Well met!",
}
// Return a randomly selected message format by specifying
// a random index for the slice of formats.
return formats[rand.Intn(len(formats))]
}