Quote Originally Posted by Weiss_R View Post
Not certain how lua works but i have seen things like this when trying to build dynamic scripts and one of the parts fail or try to process an invalid character. (like a text with quotation marks)
In any case its probably something to do with a variable since it did not happen to a massive amount of people (or an intern).
Lua looks and acts like pretty much every other scripting language (javascript, perl, ruby, etc). What sets it apart is how bare bones but blazing fast it is. Lua runs closer to the speed of a compiled language (apparently) than a scripting language. On the other hand, it's built-in functionality is pretty fundamental. It does support Closures and first order functions though, so you can do psudo-OOP with it; build whatever objects and functionality you need.