diff --git a/dust-lang/src/lib.rs b/dust-lang/src/lib.rs index 3f4da89..a84fd39 100644 --- a/dust-lang/src/lib.rs +++ b/dust-lang/src/lib.rs @@ -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;