Creates a new NodeJS app

هذا الالتزام موجود في:
2025-09-28 18:03:25 +03:00
الأصل 814a655262
التزام e7b0744ad8
3 ملفات معدلة مع 40 إضافات و0 حذوفات

11
src/app.js Normal file
عرض الملف

@@ -0,0 +1,11 @@
function greet(name) {
return `Hello, ${name}!`;
}
module.export = greet;
if (require.main === module){
console.log(greet("World"))
}