//! This should contain the VM, bytecode instructions,
//! compiler, and everything except for the runtime value struct

#![warn(missing_docs)]

pub mod bytecode;
pub mod lexer;
pub mod value;
pub mod vm;