Lua.NET
Lua.NET copied to clipboard
[C# .NET Core 8.0] [Windows] Lua.NET contains full bindings to Lua5.1.5, Lua5.2.4, Lua5.3.6, Lua.5.4.6 and LuaJIT
This issue serves for discussion on integrating LuaRocks with Lua.NET.
If someone wants to take a crack at making a website, go for it.
# Proposal lua_State should follow the IDisposable pattern to use the using keyword. # Concerns Undefined Behavior occurs when lua_close(L) closes a lua_State a second time and can result in...
This repo needs Lua built for Android. Download [lua-all](https://www.lua.org/ftp/lua-all.tar.gz) Download luajit `git clone https://luajit.org/git/luajit.git` I am not sure how to build these for Android. Collect each minor versions highest patch...
If you have a Mac and a compiler you can help! This repo needs Lua built for Mac and M1 Mac. This is how you download and build lua. ```...
It would be nice for all the functions to have in-depth explanations of what they do as per the lua reference manual. https://www.lua.org/manual/5.4/manual.html#lua_pushnil For example, lua_pushnil ``` Pushes a nil...
Compilation for Lua is important in the ecosystem. This library aims to expose Lua it should very well expose compiling. Taking suggestions for implementation.
In the current implementation these are passed to lua as value while they should actually be ptrs for reading data out. One fix could be to replace the struct with...