1 2 3 4 5 6 7 8 9 10 11
//! Virtual Machine - Evaluation of Opcodes //! //! The VM (Virtual Machine) module executes the generated machine-readable opcodes. mod error; mod helpers; mod variable; mod vm; pub use error::VMError; pub use variable::Variable; pub use vm::VM;