1package helloworld 2 3func Hello() string { 4 return "Hello, World!" 5} 6 7func HelloTo(name string) string { 8 return "Hello, " + name + "!" 9}