package hello const testVersion = 2 // HelloWorld greets the World func HelloWorld(s string) string { if s == "" { s = "World" } return "Hello, " + s + "!" }