diff --git a/hello.js b/hello.js new file mode 100644 index 0000000..0756bab --- /dev/null +++ b/hello.js @@ -0,0 +1,10 @@ +/** + * A simple Hello World function + * @returns {string} The Hello World greeting + */ +function helloWorld() { + return "Hello, World!"; +} + +// Export the function +module.exports = helloWorld; \ No newline at end of file