#reverse-polish-notation #rpn #calc

chsi00_test_rpn_calc

RPN(Reverse Polish Notatio) library

1 unstable release

0.1.1 Mar 7, 2024

#27 in #reverse-polish-notation

MIT/Apache

3KB

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

No runtime deps