#rpn #calc #reverse #notation #polish

yanked d9bc5i6m

test crate

0.1.0 Apr 12, 2022

#46 in #polish

MIT license

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