scriptful 0.1.2

A minimalist, `no_std` stack machine library for executing domain specific interpreted languages.
Documentation
1
2
3
4
5
6
7
8
9
pub mod item;
pub mod machine;
pub mod stack;
pub mod value;

/// A simple alias for referring an ordered sequence of [`Item`][Item]s of definite length.
///
/// [Item]: item
pub type Script<Op> = [item::Item<Op>];