RPN calculator
- You only need to have rust toolchain installed link
- No external crates needed — this program uses only Rust’s standard library.
After cloning the repo, cd into it, and:
> cargo run "<rpn expression>"Example:
> cargo run "3 4 + 9 *"
Output:
3 4 + 9 *
7 9 *
= 63