expr-lang
Implementation of expr in rust.
Usage
use ExprParser;
Implementation of expr in rust.
use expr::ExprParser;
fn main() {
let p = ExprParser::default();
assert_eq!(p.eval("1 + 2").unwrap().to_string(), "3");
}