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