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