1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
pub mod ast;

pub mod grammar {
    include!(concat!(env!("OUT_DIR"), "/glop.rs"));
}

mod cleanup;
mod value;
pub mod runtime;

mod test_grammar;
mod test_runtime;
mod test_value;