6 lines
103 B
Go
6 lines
103 B
Go
package greeting
|
|
|
|
// HelloWorld greets the world.
|
|
func HelloWorld() string {
|
|
return "Hello, World!"
|
|
}
|