summary refs log tree commit diff stats
path: root/go/hello-world/hello_world.go
blob: 781e41faf0899854c6c702446cb549044355da6c (plain) (blame)
1
2
3
4
5
6
7
// Implements HelloWorld.
package greeting

// HelloWorld returns "Hello, World!".
func HelloWorld() string {
	return "Hello, World!"
}