rune 0.14.2

The Rune Language, an embeddable dynamic programming language for Rust.
Documentation
#[macro_use]
mod macros;

mod arena;
pub(crate) use self::arena::Arena;

mod hir;
pub(crate) use self::hir::*;

pub(crate) mod lowering;
pub(crate) mod lowering2;

pub(crate) mod scopes;
pub(crate) use self::scopes::Scopes;

pub(crate) mod interpreter;

mod ctxt;
pub(crate) use self::ctxt::Ctxt;
use self::ctxt::Needs;