We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 082094c commit 746ed23Copy full SHA for 746ed23
main.js
@@ -5,9 +5,17 @@ const { add, subtract } = require('./util');
5
6
// Function to add two numbers
7
function addNumbers(a, b) {
8
+ console.log('Adding numbers:', a, b);
9
return add(a, b);
10
}
11
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
19
// Function to subtract two numbers
20
function subtractNumbers(a, b) {
21
return subtract(a, b);
0 commit comments