Crate chsi00_test_rpn_calc

Crate chsi00_test_rpn_calc 

Source
Expand description

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

Functions§

eval