逆波兰表示法(RPN)计算器
所有者 hoondori.
38 在 #polish
3KB
let src = String::from(" 1 2 + 3 *"); let a = rpn_calc::eval(src).unwrap(); println!("{}", a); // -> 9