lua_setglobal method

void lua_setglobal(
  1. Pointer<lua_State> L,
  2. Pointer<Char> name
)

Implementation

void lua_setglobal(ffi.Pointer<lua_State> L, ffi.Pointer<ffi.Char> name) {
  return _lua_setglobal(L, name);
}