#calc #rpn #reverse #polish #notation

yanked Mz93uxLZ

test crate

0.1.1 Apr 12, 2022
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