#reverse-polish-notation #rpn #calc

yanked neverlish_rpn_calc_test_ver

RPN(Reverse Polish Notation) library

0.1.0 Oct 20, 2024

#51 in #reverse-polish-notation

Download history 113/week @ 2024-10-16 19/week @ 2024-10-23

132 downloads per month

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