Crate kyj_rpn_calc

Source
Expand description

§RPN Calc

Reverse Polish notation (RPN) Calc.

§Example

let src = String::from("1 2 + 3 * ");
let a = rust_lib::eval(src).unwrap();
println!("{}", a); // →9

Functions§

eval