Solved helloWorld exercise

This commit is contained in:
Salih 2020-07-15 20:15:26 +02:00
parent 888383a44e
commit ca10686ac3
1 changed files with 2 additions and 1 deletions

View File

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