#rpn #reverse-polish-notation #calc

rpn_calc_mo9

RPN(Reverse Polish Notatio) library

1 unstable release

0.1.0 May 29, 2022

#36 in #reverse-polish-notation

MIT license

4KB
53 lines

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