exercism/go/hello-world/hello_world.go

12 lines
204 B
Go

package hello
const testVersion = 2
// HelloWorld takes a string (optionally empty) and says hello to it!
func HelloWorld(s string) string {
if s == "" {
s = "World"
}
return "Hello, " + s + "!"
}