Global web icon
stackoverflow.com
https://stackoverflow.com/questions/20091779/lua-o…
Lua operators, why isn't +=, -= and so on defined?
In Lua's case, the language is intended to be an embedded scripting language, so any changes that make the language more complex or potentially make the compiler/runtime even slightly larger or slower may go against this objective. If you implement each and every tiny feature, you can end up with a 'kitchen sink' language: ADA, anyone?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/17974622/what-…
What does # mean in Lua? - Stack Overflow
I have seen the hash character '#' being added to the front of variables a lot in Lua. What does it do? EXAMPLE -- sort AIs in currentlevel table.sort (level.ais, function (a,b) return a.y < b...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/11658975/how-t…
if statement - How to check if a value is equal or not equal to one of ...
Because control structures in Lua only consider nil and false to be false, and anything else to be true, this will always enter the if statement, which is not what you want either. There is no way that you can use binary operators like those provided in programming languages to compare a single variable to a list of values.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/10408704/if-el…
if statement - if, else, else if and end Lua - Stack Overflow
Any idea why this is wrong in Lua? if Pieza == 1 then if Rotacion == 1 then Piezas = Cuadrado1 else if Rotacion == 2 then Piezas =
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/5525817/inline…
Inline conditions in Lua (a == b ? "yes" : "no")? - Stack Overflow
There is a nice article on lua-users wiki about ternary operator, together with problem explanation and several solutions.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1274972/lua-wh…
resources - Lua, what is Lua? - Stack Overflow
Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/463101/lua-cur…
Lua - Current time in milliseconds - Stack Overflow
Is there a common way to get the current time in or with milliseconds? There is os.time(), but it only provides full seconds.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1426954/split-…
Split string in Lua - Stack Overflow
45 If you are splitting a string in Lua, you should try the string.gmatch () or string.sub () methods. Use the string.sub () method if you know the index you wish to split the string at, or use the string.gmatch () if you will parse the string to find the location to split the string at. Example using string.gmatch () from Lua 5.1 Reference Manual:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/3524970/why-do…
Why does Lua have no "continue" statement? - Stack Overflow
The Lua authors felt that continue was only one of a number of possible new control flow mechanisms (the fact that it cannot work with the scope rules of repeat/until was a secondary factor.)
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/829063/how-to-…
How to iterate individual characters in Lua string?
As for the pure Lua solutions, let me share this small benchmark, I've made. It covers every provided answer to this date and adds a few optimizations. Still, the basic thing to consider is: How many times you'll need to iterate over characters in string? If the answer is "once", than you should look up first part of the banchmark ("raw speed").