1
93
//#![feature(try_trait)]
2

            
3
//! This is documentation for the rust_forth module
4
//!
5
//!
6

            
7
pub use error::ForthError;
8
pub use forth_compiler::Token;
9

            
10
pub mod error;
11
pub mod forth_compiler;
12
pub mod stack_machine;
13

            
14
pub enum Handled {
15
    Handled,
16
    NotHandled,
17
}