luaur-vm 0.1.0

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
5
6
7
8
use crate::functions::lua_createtable::lua_createtable;

#[inline]
pub fn lua_newtable(l: *mut crate::records::lua_state::lua_State) {
    unsafe {
        lua_createtable(l, 0, 0);
    }
}