xee_interpreter/interpreter/mod.rs
1/// The core of the interpreter: bytecodes and a way to run them. Bytecodes
2/// are contained in functions, which together are composed into a program.
3pub mod instruction;
4mod interpret;
5mod program;
6mod runnable;
7mod state;
8
9pub use interpret::Interpreter;
10pub use program::{FunctionInfo, Program};
11pub use runnable::Runnable;