课程代码

This commit is contained in:
zpooi
2025-12-03 23:08:39 +08:00
commit 290f629d2c
63 changed files with 7065 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
// index.js
const myModule = require('./myModule');
console.log(`Author: ${myModule.author}`);
console.log(myModule.greet('Alice'));
console.log(`Sum: ${myModule.add(5, 3)}`);