From e4f6d29d35986f795500f4d18a63a77a9d1d44df Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Sun, 14 Sep 2025 04:10:24 +0000 Subject: [PATCH] [Sync Iteration] bash/hello-world/2 --- solutions/bash/hello-world/2/hello_world.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 solutions/bash/hello-world/2/hello_world.sh diff --git a/solutions/bash/hello-world/2/hello_world.sh b/solutions/bash/hello-world/2/hello_world.sh new file mode 100644 index 0000000..86f1c62 --- /dev/null +++ b/solutions/bash/hello-world/2/hello_world.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +echo "Hello, World!"