10 lines
232 B
Rust
10 lines
232 B
Rust
fn main() {
|
|
// let debug_mode = std::env::var("PROFILE").unwrap() == "debug";
|
|
|
|
lalrpop::Configuration::new()
|
|
//.emit_comments(debug_mode)
|
|
// .generate_in_source_tree()
|
|
.process()
|
|
.unwrap();
|
|
}
|