exercism.org/go/hello-world/hello_world.go

7 lines
103 B
Go

package greeting
// HelloWorld greets the world.
func HelloWorld() string {
return "Hello, World!"
}