lua_api_demo icon indicating copy to clipboard operation
lua_api_demo copied to clipboard

An educational Lua module that can be used to teach or learn about Lua's C API.

Results 2 lua_api_demo issues
Sort by recently updated
recently updated
newest added
trafficstars

`lua_getglobal(L, "package");` is broken and the behavior is either infinite loop or memory fault.

lua_pushcclosure should push the parent lua_State as the first upvalue and a "function specifier" as the second upvalue. the passed lua function should go on the parent lua_State's registry, and...

enhancement