completed hello world exercise

This commit is contained in:
CYRIX-CCS 2023-07-09 21:40:35 +01:00
parent 15f1b82b57
commit c0bb65c05c
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;