Whoome
Whoome
Fixed require to work the same as Lua 5.3, with the exception that no C native librares are supported and package.config is still ignored.
NeoLua Version: 1.3.14 Calling require function does not seem to do anything. I am unclear if this is intended (i.e. not yet implemented) or not. I craete a silly file...
This one is pretty simple, and I was able to work around it fairly easily, but I think it might be best to do this at the library level. A...
NeoLua Version: 1.3.14 Setting up a simple example to demonstrate the odd, unexpected and (I think) undesirable behavior of LuaTable. In short LuaTable neither tries to coerce to type or...
NeoLua Version: 1.3.14 Example to reproduce: ```Lua function CountTo(xx) local sum = 0 for i=1,xx do sum = sum+i end return sum end print(CountTo(1000000)) ``` This prints 1784293664, which is...