Finished first exercise

This commit is contained in:
Eric Holland 2023-11-03 19:08:41 -04:00
parent 157972d135
commit 801004c680
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
const helloWorld = function() { const helloWorld = function() {
return '' return 'Hello, World!'
}; };
module.exports = helloWorld; module.exports = helloWorld;