ux_compiler/
lib.rs

1#[macro_use]
2extern crate pest_derive;
3
4#[derive(Parser)]
5#[grammar = "ux.pest"]
6pub struct UxParser;
7
8#[cfg(test)]
9mod tests {
10    #[test]
11    fn it_works() {
12        assert_eq!(2 + 2, 4);
13    }
14}