From 87e15388455fccbc7b4fd733991562f29e619aaa Mon Sep 17 00:00:00 2001 From: Singosirutonamikaze Date: Mon, 13 Oct 2025 00:10:30 +0000 Subject: [PATCH] ADD : Hello World in JavaScript CommonJS --- source/basic/hello_world.cjs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 source/basic/hello_world.cjs 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