Calculator made by following the freecodecamp rust in replit tutorial
cargo run <number_1> <operator> <number_2>
Example:
cargo run 1 + 1
# Output
1 + 1 = 2
cargo run 2 - 1
# Output
2 - 1 = 1
cargo run 3 x 2
# Output
3 x 2 = 6
cargo run 3 / 2
# Output
3 / 2 = 1.5
cargo build
# Release version
cargo build --release