Crate laplade

source ·
Expand description

RPN Calc

Reverse Polish notation (RPN) Calc.

Example

let src = String::from("1 2 + 3 * ");
let a = laplade::eval(src).unwrap();
println!("{}", a); // →9

Functions

RPN式を計算する関数
より手軽に使う