feat: usable?

This commit is contained in:
2025-05-05 11:31:46 +08:00
parent eea4a4ce9f
commit b9dcc83c39
24 changed files with 688 additions and 244 deletions

View File

@@ -1,4 +1,5 @@
#![allow(dead_code)]
#![feature(result_flattening)]
mod builtins;
mod bytecode;
@@ -6,3 +7,7 @@ mod compile;
mod downcast;
mod ty;
mod vm;
pub use compile::compile;
pub use ty::public::Value;
pub use vm::run;