Files
not-python2/build.rs
Alek Ratzloff bfe7ca33bd Initial commit
* Parser, compiler, objects, and VM base implementations
* Stuff will print out, functions called, etc
* There are probably plenty of bugs but this is a good starting point to
  start committing changes into git

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2023-04-01 22:34:35 -07:00

7 lines
157 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
lalrpop::Configuration::new()
.generate_in_source_tree()
.process()?;
Ok(())
}