lalrpop/src/main.rs
2015-06-16 11:28:41 -04:00

17 lines
202 B
Rust

#![recursion_limit="256"]
#[macro_use]
extern crate rusty_peg;
extern crate regex;
mod grammar;
mod intern;
mod normalize;
mod parser;
#[cfg(not(test))]
fn main() {
println!("Hello, world!");
}