mirror of
https://github.com/fluencelabs/lalrpop
synced 2025-03-29 14:31:04 +00:00
17 lines
202 B
Rust
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!");
|
|
}
|