About 50 results
Open links in new tab
  1. 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 …

  2. Lua operators, why isn't +=, -= and so on defined?

    Nov 20, 2013 · 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 …

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

  4. function - Difference between . and : in Lua - Stack Overflow

    Difference between . and : in Lua Asked 15 years ago Modified 1 year, 6 months ago Viewed 81k times

  5. How can I make an GUI Application in Lua - Stack Overflow

    I've been studying Lua for around a week now, and I'm really curious of how I would do this. Basically (for now, and learning purposes), I just want to make a GUI with 2 buttons, 1 to start the specified …

  6. Integers and floating point numbers in lua - Stack Overflow

    Jan 20, 2023 · Lua has no integer type, as it does not need it. There is a widespread misconception about floating-point arithmetic errors and some people fear that even a simple increment can go …

  7. What does operator ~= mean in Lua? - Stack Overflow

    Nov 18, 2020 · What does the ~= operator mean in Lua? For example, in the following code: if x ~= params then

  8. Split string in Lua - Stack Overflow

    46 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 …

  9. How to fix Nvim 'E5113: Error while calling lua chunk'?

    Oct 10, 2024 · I tried this The Lua error:"E5113: Error while calling lua chunk:xattempt to call fiel d 'setup' (a nil value)", but it didn't work. When i remove the Telescope and Treesitter plugins, Nvim …

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