It's nice and all, but I'll be over here using LuaJIT.
Why wouldn't you be able to use this with LuaJIT? I thought LuaJIT was just a compiler for the Lua language.
Lua 5.4.0 beta
11–20 of 103 posts
Re: Lua 5.4.0 beta
#12Re: Lua 5.4.0 beta
#13It's nice and all, but I'll be over here using LuaJIT.
Why wouldn't you be able to use this with LuaJIT? I thought LuaJIT was just a compiler for the Lua language.
Re: Lua 5.4.0 beta
#14Re: Lua 5.4.0 beta
#15People that use lua, what do you use it for and why did you pick lua?
Re: Lua 5.4.0 beta
#16This has been both great for Lua as a Lua and one of its biggest challenges. It's allowed the language be constantly refined and tweaked; however, at the expense that it's super common for applications to complete break when upgraded to a point release.
Re: Lua 5.4.0 beta
#17People that use lua, what do you use it for and why did you pick lua?
Re: Lua 5.4.0 beta
#18People that use lua, what do you use it for and why did you pick lua?
The syntax is simple and clean, like JSON but without the most commonly cited warts (no requirement to quote keys, and comments are allowed.) The VM is lightweight enough that including it in an application is practically inconsequential. I like its modular syntax as well. There are also bindings for just about every language out there, making Lua code more easily portable and embeddable.
It's not without its flaws as a language but to me, it's better suited as a config language than TOML, YAML or XML for most use cases where you don't actually need their complexity, or JSON if you're not on the web.
Re: Lua 5.4.0 beta
#19Main changes - new generational mode for garbage collection - to-be-closed variables - const variables - userdata can have multiple user values - new implementation for math.random - warning system - debug information about function arguments and returns - new semantics for the integer 'for' loop - optional 'init' argument to 'string.gmatch' - new functions 'lua_resetthread' and 'coroutine.close' - coersions string-t…
Re: Lua 5.4.0 beta
#20People that use lua, what do you use it for and why did you pick lua?