Skip to content

Commit 9b918f5

Browse files
committed
Some test
1 parent 446f1c2 commit 9b918f5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

main.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,17 @@ const { add, subtract } = require('./util');
55

66
// Function to add two numbers
77
function addNumbers(a, b) {
8+
console.log('Adding numbers:', a, b);
89
return add(a, b);
910
}
1011

12+
13+
// Function to multiply two numbers
14+
function multiplyNumbers(a, b) {
15+
console.log('Multiplying numbers:', a, b);
16+
return a * b;
17+
}
18+
1119
// Function to subtract two numbers
1220
function subtractNumbers(a, b) {
1321
return subtract(a, b);

0 commit comments

Comments
 (0)