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