-
Notifications
You must be signed in to change notification settings - Fork 0
/
greetings.go
43 lines (35 loc) · 837 Bytes
/
greetings.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package greetings
import (
"errors"
"fmt"
"math/rand"
)
// Hello devuelve un saludo para la persona especificada.
func Hello(name string) (string, error) {
if name == "" {
return "", errors.New("Nombre vacio")
}
//Devuelve el saludo que incluye el nombre en un mensaje.
message := fmt.Sprintf(randomFormat(), name)
return message, nil
}
func randomFormat() string {
formats := []string{
"¡Hola %v! ¡Bienvenido!",
"¡Que hay de nuevo %v!",
"Que bueno verte de nuevo %v!",
"Buen día %v, encantado de conocerte.",
}
return formats[rand.Intn(len(formats))]
}
func Hellos(names []string) (map[string]string, error) {
messages := make(map[string]string)
for _, name := range names {
message, err := Hello(name)
if err != nil {
return nil, err
}
messages[name] = message
}
return messages, nil
}