RPN(逆波兰表示法)库
所有者 mo9rism.
#15 在 #notatio
4KB 53 行
逆波兰表示法(RPN)计算器。
let src = String::from("1 2 + 3 * "); let a = rpn_calc::eval(src).unwrap(); println!("{}", a); // →9