//! This crate implements a Forth language interpreter in Rust that can be
//! embedded in Rust applications as a scripting language.
//!
//! Also provided is a Forth executable [rtf] as an example application
//! using this library.
//!
//! [rtf]: https://crates.io/crates/rtf
extern crate approx;
pub extern crate hibitset;
extern crate uom;
pub
use Core;
use Exception;
use Memory;
use result;
pub const TRUE: isize = -1;
pub const FALSE: isize = 0;
pub const NUM_TASKS: usize = 5;
pub type Result = Result;