Crate wikibooks_rpn_calc_test_ver_zero_one_one

Source
Expand description

§RPN Calc

Reverse Polish notation (RPN) Calc.

§Example

let src = String::from("1 2 + 3 * ");
let a = rpn_calc::eval(src).unwrap();
println!("{}", a); // →9

Functions§

eval