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