Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 432 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 432 Bytes

Calc

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

Development

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))'