complete 01_helloWorld exercise

This commit is contained in:
GideonBature 2022-09-26 06:41:10 +01:00
parent 0747078d97
commit 7988a41b56
1 changed files with 1 additions and 1 deletions

View File

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