passerine 0.7.2

A small extensible programming language designed for concise expression with little code.
Documentation
//! This module contains the core VM implementation.
//! Note that these modules are public for documentation visiblility,
//! But should never be used outside of the module by `common` or `compiler`.

pub mod vm;

pub mod tag;
pub mod linked;
pub mod stack;
pub mod trace;