Hi there! I keep learning golang. Today I wrote tests and created maps 🙂
First of all I created a function using Golang’s official documentation like below:
func Greetings(names []string) (map[string]string, error) {
messages := make(map[string]string)
for _, name :=