Update helloWorld.js

This commit is contained in:
Azim01 2023-10-17 14:19:34 +08:00 committed by GitHub
parent 157972d135
commit 32eec04926
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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