About 586,000 results
Open links in new tab
  1. 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...

  2. Inline conditions in Lua (a == b ? "yes" : "no")? - Stack Overflow

    May 3, 2013 · There is a nice article on lua-users wiki about ternary operator, together with problem explanation and several solutions.

  3. if statement - How to check if a value is equal or not equal to one …

    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 …

  4. if statement - if, else, else if and end Lua - Stack Overflow

    May 2, 2012 · Any idea why this is wrong in Lua? if Pieza == 1 then if Rotacion == 1 then Piezas = Cuadrado1 else if Rotacion == 2 then Piezas =

  5. installation - How to install Lua on windows - Stack Overflow

    I'm new to Lua, and need to know how to install it on Windows? I've tried and am unable to run the sample. When I try to compile it 100% success is shown, but when I click the run button it …

  6. Lua - if statement with two conditions on the same variable?

    Jan 24, 2012 · 20 How can I set a lower and upper bound value for a variable in a if-statement in lua programming language? I need something like the pseudocode below.

  7. How to check if a table contains an element in Lua?

    How to check if a table contains an element in Lua? Asked 15 years, 9 months ago Modified 4 years, 8 months ago Viewed 323k times

  8. Concatenation of tables in Lua - Stack Overflow

    Sep 11, 2009 · EDIT For those who come across this post in the future, please note what @gimf posted. Since Tables in Lua are as much like arrays than anything else (even in a list context), …

  9. What is %s+ or %s used for in lua and how do you use it?

    May 2, 2019 · A % in a string has no meaning in Lua syntax, but does mean something to certain functions in the string library. In string.format, % is used to make a format specifier that …

  10. What is the alternative for switch statement in Lua language?

    In general, if you want a switch statement in Lua, what you ought to be doing is building a table. For your simple case of choice that could be 1, 2, or fail, a simple if statement with a few …