feat: init

This commit is contained in:
2025-05-03 12:49:48 +08:00
commit 5e35da49ef
27 changed files with 3390 additions and 0 deletions

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

@@ -0,0 +1,12 @@
mod env;
mod stack;
mod value;
mod vm;
mod vmthunk;
#[cfg(test)]
mod test;
pub use env::Env;
pub use value::Symbol;
pub use value::VmValue as Value;