diff --git a/solutions/go/hello-world/1/hello_world.go b/solutions/go/hello-world/1/hello_world.go new file mode 100644 index 0000000..28c166c --- /dev/null +++ b/solutions/go/hello-world/1/hello_world.go @@ -0,0 +1,6 @@ +package greeting + +// HelloWorld greets the world. +func HelloWorld() string { + return "Hello, World!" +}