basic-lang 0.2.0

The BASIC programming language as it was in 1978.
Documentation
/*!
## Rust Machine Module

This Rust module is a compiler and virtual machine for BASIC.

*/

pub type Address = usize;
pub type Symbol = isize;

mod compile;
mod link;
mod op;
mod program;
mod runtime;
mod stack;
mod val;
mod var;

pub use link::Link;
pub use op::Op;
pub use program::Program;
pub use runtime::Event;
pub use runtime::Runtime;
pub use stack::Stack;
pub use val::Val;
pub use var::Var;

#[cfg(test)]
mod tests;