expr-lang 0.1.1

Implementation of expr language in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## expr-lang

Implementation of [expr](https://expr-lang.org/) in rust.

## Usage

```rust
use expr::ExprParser;

fn main() {
    let p = ExprParser::default();
    assert_eq!(p.eval("1 + 2").unwrap().to_string(), "3");
}
```