This project is a math expression interpreter and calculator, the reason to it exists is to exercise the syntax, conventions and concepts of the Rust lang
To run tests:
cargo test
To execute in develop mode
cargo run '1+(2-3)*((4))'
To build:
cargo build --release
To execute:
target/release/rust_calc '1+(2-3)*((4))'