Exercise: calucaltor argv


Implement a calculator for the 4 basic operations (+, -, /, *) in Rust that accepts the parameters on the command line:


rustc calc.rs
./calc 3 + 4
7

./calc 3 - 4
-1