hello world

This commit is contained in:
Jaycee Go 2023-01-29 17:30:27 +08:00
parent 8746ce056a
commit 1a87383606
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;