From 8adca7314fad0b395bd8e9a9237305ef09d6c73d Mon Sep 17 00:00:00 2001 From: Daniel Samuel Date: Mon, 15 Mar 2021 19:06:55 +0100 Subject: [PATCH] Hello World solution --- helloWorld/helloWorld.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index a41264d..7d01115 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { - return '' + return 'Hello, World!' } module.exports = helloWorld