diff --git a/source/basic/hello_world.cjs b/source/basic/hello_world.cjs new file mode 100644 index 0000000..f6549d7 --- /dev/null +++ b/source/basic/hello_world.cjs @@ -0,0 +1,5 @@ +function helloWorld() { + console.log("Hello, World!"); +} + +module.exports = helloWorld; \ No newline at end of file