expr-lang 0.1.1

Implementation of expr language in Rust
Documentation
1
2
3
4
5
6
fn main() {
    lalrpop::Configuration::new()
        .use_cargo_dir_conventions()
        .process_file("src/grammar.lalrpop")
        .unwrap();
}