Files
orchid/src/interpreter/mod.rs
Lawrence Bethlenfalvy 3fdabc29da Most files suffered major changes
- Less ambiguous syntax
- Better parser (Chumsky only does tokenization now)
- Tidy(|ier) error handling
- Facade for simplified embedding
- External code grouped in (fairly) self-contained Systems
- Dynamic action dispatch
- Many STL additions
2023-08-18 12:57:41 +01:00

12 lines
242 B
Rust

//! functions to interact with Orchid code
mod apply;
mod context;
mod error;
mod handler;
mod run;
pub use context::{Context, Return};
pub use error::RuntimeError;
pub use handler::{run_handler, HandlerRes, HandlerTable};
pub use run::run;