* 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>
7 lines
157 B
Rust
7 lines
157 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
lalrpop::Configuration::new()
|
|
.generate_in_source_tree()
|
|
.process()?;
|
|
Ok(())
|
|
}
|