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

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

  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. lua - Undefined global `vim` - Stack Overflow

    Jun 1, 2025 · lua neovim language-server-protocol neovim-plugin edited Jun 1 at 15:00 romainl 199k 21 300 340

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

  6. 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 …

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

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

    Difference between . and : in Lua Asked 14 years, 9 months ago Modified 1 year, 2 months ago Viewed 80k times

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

  10. Lua - get command line input from user? - Stack Overflow

    Nov 29, 2009 · In my lua program, i want to stop and ask user for confirmation before proceeding with an operation. I'm not sure how to stop and wait for user input, how can it be done?