passerine 0.8.1

A small extensible functional scripting language designed for concise expression with little code.
Documentation
//! Contains datastructures and utility functions
//! common to both the `compiler` and `vm`, including:
//!
//! - Core data-strucutres.
//! - Opcodes and number splicing.
//! - Source code representation and span annotations.

pub mod source;
pub mod span;
pub mod data;
pub mod number;
pub mod opcode;
pub mod lambda;
pub mod closure;
pub mod stamp;