simplexpr 0.1.0

A simple expression language, used as a part of eww
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
source: src/lib.rs
expression: "p.parse(Lexer::new(\"foo(1, 2)\"))"

---
Ok(
    FunctionCall(
        "foo",
        [
            Literal(
                "1",
            ),
            Literal(
                "2",
            ),
        ],
    ),
)