```sh
var = calc [operation]
```
The calc command accepts multiple arguments which make up a mathematical operation which will be
calculated and its result will be returned.
Any number of arguments which will construct a line to calculate.
The result of the mathematical calculation.
```sh
result = calc 1 + 5 * 7
```