I am just starting with lua, and i have some code, from someone with some intentionally mistakes in it. Now i\'ve hit a roadblock getting this error on and on for the following code:
how can I match following strings with one expression? local a = \"[a 1.001523] <1.7 | [...]> < a123 > < ? 0 ?>\";
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I\'ve been trying to figure this out for a while, and I just can\'t.I use a program (CMUD) in which I utilize the Lua scripting language extensively for data-mining.I\'ve written scripts that gather w
I have a joystick graphic placed in the corner of the screen in my Corona game. When the user touches the joystick and drags it from side-to-side, it moves the character. However, if the user dra开发
I\'m trying to setup Wireshark so that I can use the LuaInterface to use some of the classes in the .NET framework.I\'m able to get it working run开发者_如何学编程ning through the Lua command line, bu
According to the documentation _G开发者_C百科 \"holds the global environment\". I wanted to see what\'s inside it so I wrote the following code to print _G but it doesn\'t work:
I\'m trying to convert a Lua Table to a C# Byte array.I was able to get a conversion to a Double array to work as follows:
The code says it all: #tryModA.lua: f,err=loadfile(\"tryModB.lua\") if not f then print(\"F is nil!!! Err:\"..err)
So I\'ve run across a problem that has been addressed in other languages but not in Corona/Lua. How does one remove an event listener with an anonymous function?