exercism/go/hello-world/hello_world.go

7 lines
103 B
Go
Raw Normal View History

2024-11-04 19:28:33 +00:00
package greeting
// HelloWorld greets the world.
func HelloWorld() string {
return "Hello, World!"
}