Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lua, what is Lua? [closed]

Tags:

resources

lua

People also ask

What is a Lua Upvalue?

The expression lua_upvalueindex(1) refers to the index of the first upvalue of the function. So, the lua_tonumber in function counter retrieves the current value of the first (and only) upvalue as a number.

Is Lua lexically scoped?

Lua does act as lexically scoped when the variable accessed is at the global scope: do -- assume "a" is a global with value 5 local foo = function() print(a) end a = 10 foo() -- prints "10" end.

What is a Lua callback?

Callbacks in Lua have the same names and receive the same parameters as callbacks in C, in the same order. In Lua the callbacks they can either return a value or not, the IupLua binding will automatically return IUP_DEFAULT if no value is returned. In Lua callbacks can be Lua functions or strings with Lua code.

What is a Lua state?

The lua_State is basically a way to access what's going on in the Lua "box" during execution of your program and allows you to glue the two languages together.


I'm surprised everyone is getting this one wrong.

Lua is the Hawaiian word for "toilet".


Lua is a lightweight interpreted programming language developed in Brazil with a focus on embedding.

It is written in Pure ANSI C which means high portability, even as C++ code.

Here is an example:

print("Hello World!")

Wikipedia Summary

Official Site


Lua is a scripting language for C and C++. It allows to use the simpler syntax of Lua and execute these scripts in your C/C++ application. Therefore you don't have to compile the program on each change, but simply deliver a new script version.

For tutorials just use google, you'll find enough to keep you busy the next days.


Lua is a simple lightweight highly portable dynamically typed embeddable and extendable multi-paradigm scripting language. The "vanilla" (some would say official) implementation of it is made purely on ANSI C and has an awesome (simple yet powerful) C API that you can use to both embed Lua on your app or extend the behavior of the language itself. It is developed at the Informatics Department of the Pontifical Catholic University of Rio de Janeiro (PUC-Rio).

Thought it was not primarily designed for that, Lua found a big niche in game scripting, with big names such as "Grim Fandango" and "World of Warcraft". Nonetheless, because of its speed, simplicity and portability, it is also heavily used in embedded systems (see, for example, eLua project) and graphic computing.

Its philosophy is to be minimalistic, i.e its core libraries are very small with only minimum functionality (quite like C's standard libraries), though through the C API it is very simple to add features that wouldn't be possible through the pure core library, such as sockets, GUIs etc. In fact, Lua is so minimalistic that its main -and only- structured data type are 'tables', that could be described as associative arrays on 'roids.

Lua is procedural in its essence, but also supports multiple paradigms such as functional programming and object orientation.

Though Lua is not the fastest scripting language around (probably javascript's V8 project wins the prize) it is very fast (faster than vanilla Python or Ruby, for instance) and also features a non-official just-in-time implementation called LuaJIT.

In the end, Lua is actually no more than a fun language to play with, which I recommend!. =)

About tutorials, I'd recommend the article about that on the lua-users wiki.

I hope I helped! =)

PS: I couldn't post all the links because I'm new on stack overflow, but it shouldn't be hard to find everything on Google. Sorry. =(


Lua is a scripting language. Link is to lua.org. It is heavily used in game development, most notably (to me) World of Warcraft.


Lua is a lightweight, embeddable scripting language. It's garnered a lot of popularity partly due to it's use in many popular games. A good example of this is World of Warcraft which uses an embedded version of lua to drive the behavior of the UI elements in the game.

A good intro to the language can be found here: http://computer-programming-languages.suite101.com/article.cfm/a_brief_introduction_to_lua_scripting

And the official online reference for the language can be found here: http://www.lua.org/manual/5.1/


It's a scripting language that is designed to work with C (and C++). It is designed to be embedded into C/C++ programs. Which means unlike a lot of other scripting languages, it makes no use of global variables and such, this means you can easily thread lua scripting engines.

It also makes claims about being the fastest dynamic scripting language.

I've made use of it in PC based C++ application for creating a plugin scripting interface, and also used it as a embedded scripting language. Its quite versitile, nice and small.

as a general purpose scripting language? Its not quite in the same league as your ruby/python/perl type stuff. It doesn't have as many libraries and the user community is pretty small.

But for extending C++/C apps? its awesome.