From 801004c68064cd6160b16446e5563e51df498597 Mon Sep 17 00:00:00 2001 From: Eric Holland Date: Fri, 3 Nov 2023 19:08:41 -0400 Subject: [PATCH] Finished first exercise --- 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..f91f8a8 100644 --- a/01_helloWorld/helloWorld.js +++ b/01_helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { - return '' + return 'Hello, World!' }; -module.exports = helloWorld; +module.exports = helloWorld; \ No newline at end of file