fakelua 0.0.1

Another LuaJIT implemented with Rust and GCC JIT
Documentation
1
2
3
4
5
6
7
8
pub struct Lua {
    id: i32,
}

pub fn fakelua_newstate() -> Lua {
    let mut r = Lua { id: 1 };
    r
}