From f91f2f87d57dbdc050ce2a945b9f7e85ed36d4d4 Mon Sep 17 00:00:00 2001 From: Clem Fandango Date: Thu, 28 Dec 2023 12:48:37 +0100 Subject: [PATCH] test commit --- 01_helloWorld/helloWorld.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01_helloWorld/helloWorld.js b/01_helloWorld/helloWorld.js index df27036..506ada9 100644 --- a/01_helloWorld/helloWorld.js +++ b/01_helloWorld/helloWorld.js @@ -1,5 +1,5 @@ -const helloWorld = function() { - return '' +const helloWorld = function () { + return "hello world"; }; module.exports = helloWorld;