From a1aaa553ecfa3103867f2446254463af1c310bba Mon Sep 17 00:00:00 2001 From: Claukorze <144242731+Claukorze@users.noreply.github.com> Date: Thu, 11 Jul 2024 18:41:44 -0300 Subject: [PATCH 1/2] Create solution.js --- solution.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 solution.js diff --git a/solution.js b/solution.js new file mode 100644 index 0000000..53e5058 --- /dev/null +++ b/solution.js @@ -0,0 +1,8 @@ +//add.js +function add(a, b) { + return a + b; +} + +module.exports = { + add +}; From d2b822e6d5ce08dd67c58382f463416d882ec118 Mon Sep 17 00:00:00 2001 From: Claukorze <144242731+Claukorze@users.noreply.github.com> Date: Mon, 15 Jul 2024 23:10:45 -0300 Subject: [PATCH 2/2] Update solution.js --- solution.js | 1 + 1 file changed, 1 insertion(+) diff --git a/solution.js b/solution.js index 53e5058..ef29ddd 100644 --- a/solution.js +++ b/solution.js @@ -1,3 +1,4 @@ + //add.js function add(a, b) { return a + b;