1// Copyright © 2025 Stephan Kunz 2//! Execution implementations. 3 4mod chunk; 5mod error; 6pub mod op_code; 7mod vm; 8 9// flatten 10pub use chunk::Chunk; 11pub use error::{ExecutionError, ExecutionResult}; 12pub use vm::VM;