Postfix Notation Calculator
- Rust
Run the program using the following command.
cargo run
The calculation of the expression 2+2
could look like this:
$ cargo run
2 2 +
Result: 4
Lets try something more sophisticated such as pow(2, 5)
:
$ cargo run
2 2 * 2 * 2 * 2 *
Result: 32