| Destructing Imports| Math | Matematica | Functions |
|---|
| Math.add(2, 3) = 5 | Matematica.add(2, 3) = 5 | add(2, 3) = 5 | | Math.subtract(5, 1) = 4 | Matematica.subtract(5, 1) = 4 | subtract(5, 1) = 4 | | Math.multiply(3, 4) = 12 | Matematica.multiply(3, 4) = 12 | multiply(3, 4) = 12 | | Math.divide(8, 2) = 4 | Matematica.divide(8, 2) = 4 | divide(8, 2) = 4 |
|