Solved 01_helloWorld

This commit is contained in:
Max Hillebrand 2023-11-17 08:11:44 +01:00
parent a3992aa0de
commit 9dadabc9bf
1 changed files with 2 additions and 2 deletions

View File

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