#rpn #polish #reverse #notation #calc

rpn_calc_joonhoson

RPN(Reverse Polish Notation) library

1 unstable release

0.0.1 Jul 13, 2023

#40 in #polish

37 downloads per month

MIT license

3KB

RPN Calc

Reverse Polish notation (RPN) Calc.

Example

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

No runtime deps