Lua.NET icon indicating copy to clipboard operation
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

Results 12 Lua.NET issues
Sort by recently updated
recently updated
newest added

This issue serves for discussion on integrating LuaRocks with Lua.NET.

question

If someone wants to take a crack at making a website, go for it.

enhancement
help wanted
good first issue

# 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...

Proposal

This thread serves as a Lua version request.

enhancement

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...

enhancement
help wanted
good first issue

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. ```...

enhancement
help wanted
good first issue

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...

documentation
help wanted
good first issue

Compilation for Lua is important in the ecosystem. This library aims to expose Lua it should very well expose compiling. Taking suggestions for implementation.

enhancement

Load utf8 string, display incorrectly

bug
help wanted
good first issue

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...