Fix and clean up interpreter changes

This commit is contained in:
Jeff 2024-07-28 13:11:42 -04:00
parent 77e84f9fa8
commit 175d82d382

View File

@ -18,4 +18,8 @@ pub mod standard_library;
pub mod value;
pub use abstract_tree::Type;
pub use context::Context;
pub use interpreter::{interpret, Interpreter, InterpreterError};
pub use lexer::{lex, lexer};
pub use parser::{parse, parser};
pub use value::Value;