cargo install calcul8
```sh
add
command with -a or --addition$ calcul8 add 1 2 3 4 5 15
sub
command with -s or --subtraction$ calcul8 sub 8 2 1 5
mul
command with -m or --multiplication$ calcul8 mul 20 7 4 560
div
command with -d or --division$ calcul8 div 8 4 2
```
sh
$ calcul8 -p 3 add 30.12 40.2121 10.12312
80.455
$ calcul8 -p 4 add 30.12 40.2121 10.12312
80.4552
To see all the commands and options, run calcul8 --help
cargo run
to build app and run itcargo run -- --help
to see all the commands and optionscargo test
to ensure all tests passcargo fmt
to ensure your code is formatted correctly