odin-javascript-exercises/01_helloWorld/helloWorld.js
2023-06-19 15:07:57 -07:00

5 lines
93 B
JavaScript

const helloWorld = function () {
return 'Hello, World!'
};
module.exports = helloWorld;