Posts by luca16s • 11 points
1 post
-
1
votes1
answer76
viewsA: I can’t import tables with require
You ended up forgetting to export the calculator table. Follow the example: local calculadora = { somar = function(x, y) return x + y end } function calculadora.multiplicar(x, y) return x * y end…