//! Bytecode compiler and virtual machine.
//!
//! Provides:
//! - `opcode::Op` — bytecode instruction set
//! - `chunk::ByteCodeFunction` — compiled function representation
//! - `compiler::Compiler` — AST to bytecode compiler
//! - `vm::Vm` — stack-based bytecode interpreter
// Re-export main types
pub use ByteCodeFunction;
pub use Compiler;
pub use Op;
pub use Vm;