From 175af2e997f1b39d795d588773bf046b97628f86 Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Fri, 8 Aug 2025 03:04:27 +0000 Subject: [PATCH] [Sync Iteration] javascript/hello-world/1 --- solutions/javascript/hello-world/1/hello-world.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 solutions/javascript/hello-world/1/hello-world.js diff --git a/solutions/javascript/hello-world/1/hello-world.js b/solutions/javascript/hello-world/1/hello-world.js new file mode 100644 index 0000000..5fec175 --- /dev/null +++ b/solutions/javascript/hello-world/1/hello-world.js @@ -0,0 +1,8 @@ +// +// This is only a SKELETON file for the 'Hello World' exercise. It's been provided as a +// convenience to get you started writing code faster. +// + +export function hello() { + return 'Hello, World!'; +}