//! Otomoescript
//! More info here
//! Getting started.
mod context;
mod default_context;
pub(crate) mod parser;
mod repl;
mod run;
mod scope;
pub use context::Context;
pub use repl::repl;
pub use run::run;
pub use scope::Scope;
pub(crate) mod tokenizer;