feat(*): 代码仓库初始化

This commit is contained in:
2025-11-07 18:39:29 +08:00
commit b1aeb6b39b
36 changed files with 1700 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
const auther = "harry";
const greet = (name) => {
return `Hello, ${name}!`;
};
const add = (a, b) => {
return a + b;
};
module.exports = {
auther,
greet,
add
}