Reverse Polish notation (RPN) Calc.
let source = "1 2 + 3 *".to_string(); let a = rpn_calc::eval(source).unwrap(); println!("{}", a); // 9