From 356316e51ca971ac7fce5158e6f5dde6870d4e76 Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 16:59:45 +0000 Subject: [PATCH] [Sync Iteration] go/hello-world/1 --- solutions/go/hello-world/1/hello_world.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 solutions/go/hello-world/1/hello_world.go 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!" +}