vote up 3 vote down star

Hi all?

I read something about Lua this day, and I was wondering what it was. I did a Google and Wikipedia (I understanded it until they begun talking about a C API) search bit I still don't understand it. Can someone explain me what Lua is and maybe even a tutorial for beginners?

Thanks in advance!

flag

Exactly, what didn't you understand? – Geo Aug 13 at 22:32
2  
A neat programming language with a odd name! – NoMoreZealots Aug 13 at 22:57
@Geo. What Lua is. – Koning Baard XIV Aug 19 at 16:08

6 Answers

vote up 6 vote down check

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.

link|flag
I'dd add to that that it allows to quite easily invoke the C code (don't know about C++, never did it myself, so maybe) from your Lua script. Also it's tiny and quite fast. Which makes it an ideal "glue" for an application. Oh, and it is a perfect config file parser (if you don't import any functions into the interpreter context that you use for parsing the config files). – Andrew Y Aug 13 at 23:42
vote up 2 vote down

I'm surprised everyone is getting this one wrong. Lua is the Hawaiian word for "toilet".

link|flag
+1 for the funny. – ceretullis 4 hours ago
vote up 2 vote down

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.

link|flag
vote up 3 vote down

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/

link|flag
vote up 1 vote down

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

link|flag
2  
why the -1? – Javier Aug 13 at 23:01
I wonder if someone thought I worked for Blizzard. I do not. I just played and enjoyed the game for a long, long time. On the other hand, quitting has been the best thing for my life. /shrug – Paul Williams Aug 26 at 22:40
I gave you +1 for the awesomeness of your answer! – Mark Dec 5 at 9:30
vote up 12 vote down

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

link|flag
1  
I'd add that mainstream games like crysis use it for scripting. – sztomi Aug 13 at 22:35
Don't forget World of Warcraft! Armies of Lua hackers have been birthed due to that game. – Stuart B Aug 13 at 22:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.