luallaby 0.1.0

**Work in progress** A pure-Rust Lua interpreter/compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// TODO: Add documentation

#[macro_use]
mod error;
mod ast;
mod bitset;
mod compiler;
mod lexer;
mod util;
mod value;
mod vm;

pub use error::{Error, LuaError, Result};
pub use util::read_lua_file;
pub use value::Value;
pub use vm::VM;

pub const LUA_VERSION: (u8, u8) = (5, 4);