mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
9 lines
135 B
Rust
9 lines
135 B
Rust
use lalrpop;
|
|
|
|
fn main() {
|
|
lalrpop::Configuration::new()
|
|
.generate_in_source_tree()
|
|
.process()
|
|
.unwrap();
|
|
}
|