Hello World solution

This commit is contained in:
Daniel Samuel 2021-03-15 19:06:55 +01:00
parent 42076e7424
commit 8adca7314f
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