forked from Orchid/orchid
- 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
12 lines
242 B
Rust
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;
|