Add hello package with tests

This commit is contained in:
2022-01-03 12:50:52 +01:00
parent 39be6e1d4d
commit 619c6b215e
3 changed files with 64 additions and 0 deletions

33
hello/hello.go Normal file
View File

@@ -0,0 +1,33 @@
package main
import "fmt"
const spanish = "Spanish"
const french = "French"
const englishHelloPrefix = "Hello, "
const spanishHelloPrefix = "Hola, "
const frenchHelloPrefix = "Bonjour, "
func Hello(name string, language string) string {
if name == "" {
name = "World"
}
return greetingPrefix(language) + name
}
func greetingPrefix(language string) (prefix string) {
switch language {
case french:
prefix = frenchHelloPrefix
case spanish:
prefix = spanishHelloPrefix
default:
prefix = englishHelloPrefix
}
return
}
func main() {
fmt.Println(Hello("world", ""))
}