Speed sketch beginnings of a Rust implementation of new stripped-down Scheme-like Kraken

This commit is contained in:
2023-02-07 02:07:53 -05:00
parent 3807381ceb
commit 60dad101f8
7 changed files with 715 additions and 0 deletions

5
kr/build.rs Normal file
View File

@@ -0,0 +1,5 @@
extern crate lalrpop;
fn main() {
lalrpop::process_root().unwrap();
}