Started new kv impl with support for mutable cells, just the basic interpreter. Going to add the lazy bytecode interperter next

This commit is contained in:
2023-05-14 23:50:27 -04:00
parent 82bfb5bc7b
commit ea1516fbd1
9 changed files with 1982 additions and 55 deletions

5
kv/build.rs Normal file
View File

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