luallaby 0.1.0-alpha.3

**Work in progress** A pure-Rust Lua interpreter/compiler
Documentation
// TODO: Add documentation

#[macro_use]
mod error;
mod ast;
mod bitset;
mod compiler;
mod num;
mod token;
mod vm;

pub use error::{Error, LuaError};
pub use vm::VM;