About 50 results
Open links in new tab
  1. Easiest way to parse a Lua datastructure in C# / .Net

    May 19, 2009 · Anyone know of an easy way to parse a Lua datastructure in C# or with any .Net library? This would be similar to JSON decoding, except for Lua instead of javascript. At this point it looks like …

  2. How to pass a function as a parameter in Lua? - Stack Overflow

    How to pass a function as a parameter in Lua? Asked 12 years, 8 months ago Modified 7 years, 10 months ago Viewed 38k times

  3. How do I append to a table in Lua - Stack Overflow

    How do I append to a table in Lua Asked 11 years, 2 months ago Modified 2 months ago Viewed 297k times

  4. How do I run another script from inside Lua? - Stack Overflow

    Jan 7, 2013 · I need to execute a Lua script from inside another Lua script. How many ways are there, and how do I use them?

  5. How do I Make an executable Lua script using srlua?

    Oct 19, 2013 · Then for each Lua program that you want to turn into a stand-alone program, do glue srlua.exe prog.lua prog.exe Of course, you can use any name instead of prog.exe." and when I am …

  6. c++ - Pushing a Lua table - Stack Overflow

    Oct 21, 2010 · I have created a Lua table in C, but I'm not sure how to push that table onto the top of a stack so I can pass it to a Lua function. Does anyone know how to do this? This is my current code:

  7. What is the purpose of double colons in Lua? - Stack Overflow

    Jan 6, 2016 · I may be wrong, but I do not believe to remember the usage of the double-colons :: like it is used so abundantly there. I see that it is considered a "special token" like others are (greater than, …

  8. Why does Lua have no "continue" statement? - Stack Overflow

    ¹ Lua is a very minimalistic language. It tries to have as few features as it can get away with, and a continue statement isn't an essential feature in that sense.

  9. Download and build Lua with modern CMake - Stack Overflow

    Dec 21, 2019 · Let's try to build lua via cmake! Motivation: cmake is gaining more attention and support through IDEs like CLion or even Visual Studio 2017 (and newer). This is great if you want to provide pl...

  10. require - execute lua string as lua code - Stack Overflow

    Jun 6, 2017 · 11 There's a whole section in Programming in Lua devoted to that. Your needs will be directly fulfilled with loadstring in Lua 5.1 and older, or load in Lua 5.2 and newer. I would carefully …