exercism/go/hello-world/hello_world.go
2024-11-04 14:28:33 -05:00

7 lines
103 B
Go

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