From 2d4d23684485259db1fa1915a69ccb31cbc4d83c Mon Sep 17 00:00:00 2001 From: phelipeguimaraes Date: Wed, 29 Jan 2025 18:36:17 -0300 Subject: [PATCH] Implementado soma --- moeda.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/moeda.js b/moeda.js index a8f7e03..c168e55 100644 --- a/moeda.js +++ b/moeda.js @@ -1,3 +1,6 @@ -export default { - moeda: 'BRL' +function soma(a, b) { + return a + b; } + +soma(4,2) +console.log(soma(4,2)) \ No newline at end of file