common_expression_language/
lib.rs

1use lalrpop_util::lalrpop_mod;
2
3pub mod ast;
4
5lalrpop_mod!(pub cel); // synthesized by LALRPOP
6
7#[cfg(test)]
8mod tests {
9    #[test]
10    fn it_works() {
11        assert_eq!(2 + 2, 4);
12    }
13}