diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
| commit | f752160c6ebcee747a61e6febc4789d0b04ccd12 (patch) | |
| tree | 76e123279abbd1797ba281f35cbcba61136ef7bd /src/lib.rs | |
| parent | 98d7946709032aae5e1d0d35cff78efc55550900 (diff) | |
feat: implement generic engine for executor
Diffstat (limited to '')
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs index 725084a..4a7950a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -83,13 +83,14 @@ extern crate test; mod constants; +mod engine; pub mod executor; pub mod lexer; pub mod parser; #[cfg(feature = "utilities")] pub mod utility; -pub use executor::execute; +pub use executor::Executor; pub use lexer::{lex, OperatorCode}; use miette::Diagnostic; pub use parser::{parse, Instruction}; |