This commit is contained in:
qwr
2023-11-10 11:29:41 +03:00
commit 6fdae3e57b
20 changed files with 2159 additions and 0 deletions

3
operations.js Normal file
View File

@@ -0,0 +1,3 @@
module.exports.multiply = function (x, y) {
return x * y;
};