This commit is contained in:
2025-07-09 13:26:51 +01:00
commit d564cf2cd1
24 changed files with 19728 additions and 0 deletions

7
test_src/arithmetic.cjs Normal file
View File

@@ -0,0 +1,7 @@
module.exports.sum = function sum(a, b) {
return a + b;
}
module.exports.div = function div(a, b) {
if (b == 0) return NaN;
return a / b;
}