1 stable release
1.0.0 | Aug 14, 2024 |
---|
#7 in #reverse-polish-notation
3KB
#RPN Calc Reverse Polish Notation(RPN) Calc. #Example
let src = String::from("1 2 + 3 *");
let a = orfeo_rpn_calc::eval(src).unwrap();
println!("{}", a); // -> 9
1.0.0 | Aug 14, 2024 |
---|
#7 in #reverse-polish-notation
3KB
#RPN Calc Reverse Polish Notation(RPN) Calc. #Example
let src = String::from("1 2 + 3 *");
let a = orfeo_rpn_calc::eval(src).unwrap();
println!("{}", a); // -> 9