Add parser, vm, objects

Big ol thing. You should check it out sometime

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-01-07 20:30:55 -08:00
parent 946a927b09
commit 9e20dcf59c
17 changed files with 712 additions and 84 deletions

4
src/vm/mod.rs Normal file
View File

@@ -0,0 +1,4 @@
pub mod error;
pub mod eval;
pub mod inst;
pub mod machine;