-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgreetings.go
50 lines (37 loc) · 968 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
44
45
46
47
48
49
50
package greetings
import (
"errors"
"fmt"
"math/rand"
)
// Hello devuelve un salud para la persona especificada
func Hello(name string) (string, error) {
if name == "" {
return "", errors.New("nombre vacío")
}
// devuelve un saludo que incluye el nombre en un mensaje
// message := fmt.Sprintf("¡Hola, %v! ¡Bienvenido!", name)
message := fmt.Sprintf(randomFormat(), name)
return message, nil
}
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
}
// randomFormat devuelve uno de varios formatos de mensajes
// se selecciona de forma aleatoria
func randomFormat() string {
formats := []string{
"¡Hola, %v! ¡Bienvenido!",
"¡Qué bueno verte, %v!",
"¡Saludo, %v! ¡Encantado de conocerte!",
}
return formats[rand.Intn(len(formats))]
}