Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The only thing I know about Lua is that it is used to develop Ion (which is a tiling tabbed window manager designed with keyboard users in mind.)

Since I'm on SO, I can see some question about Lua, about 80 question with this tag, so I was wondering if someone could tell me briefly what this language is about and what are the advantages and drawback of it.

share|improve this question

10 Answers

up vote 46 down vote accepted

Everyone is pointing out that Lua is good in the gaming space. It is. However I personally don't place its limits there.

As others have said, Lua is small, fast, and completely cross-platform (wherever there is an ANSI C compiler, anyway [they're everywhere]).

It also benefits from several clever enhancements which affect performance. Its "table" type mechanism automatically detects whether to handle a particular table as an array, a hash table, or both.

Lua has incremental garbage collection, which means that pauses to find and collect now unused data are kept to a minimum. This is completely configurable at runtime too (eg. you can pause the garbage collector during time-critical code sections).

When efficiency or system-interfacing tasks are required, Lua has a clean stack-based C API, which allows you to both embed it inside larger applications, or to extend it, through writing modules.

The fact that Lua manages at once to be so advanced, and small, and appear so simple to the user really is what I admire about it. Most people can pick it up in less than a day, the reference manual is short, the online guide and book simple to follow, and the community is wide and is experienced in a range of fields (not just games, thankfully).

Lua is therefore my choice of language for nearly all projects (mixing with C when necessary). I use it daily for this reason :)

share|improve this answer

Great things about Lua for me are:

  • Easy to interface with c/c++/obj-c. It has a very clean C API.
  • Completely portable with almost no external dependencies. (I think the last version almost all but removed the need for stdlib.h!)
  • Flexible - you can set up the interface to your C in just about any way you want short of full on OO which IMO is a bit overboard for what it's built for.
  • Stable with good error recovery if you know how to do it.
  • Supports functional programming with first class functions and closures.
  • Consistent and not overly verbose syntax (shhh - I know "if () then")
  • TABLES! - One of the most elegant data structures I have seen in any language
  • Good documentation and community support
  • Free!
share|improve this answer
For your second point, that makes it very suitable for freestanding environments such as embedded and kernel programming as well. – Earlz Dec 25 '10 at 3:18
I'd love to see an actual embedded case. That is, not a GPOS running on a gigantic processor "embedded". – XTL Feb 20 '12 at 9:23

I'm sure there are many technical advantages, but for me it's just fun. It reminds me a bit of my early experiences with Perl.

I like the way tables work and that functions are first-class values. I like how clean and compact working code can be. I like metatables and metamethods.

I don't like that variables are global by default.

share|improve this answer
1  
Can you develop a bit more how things you like works as I don't know how Lua code looks like. – claferri Feb 19 '09 at 10:52

I personally think the main advantage is that it's easy to embed in other applications.

It's also a very nice language, but most other nice languages are more painful to embed.

It compiles on almost every platform, it is small and unintrusive and has a great C api making data passing and native function implementations easy.

share|improve this answer

One field where Lua is often used is game scripting. I can think of the following advantages:

  • It's easier and faster to express behaviour of game characters and environment in Lua than in C++.
  • Lua is interpreted, so you can simply change the script while the game is running and see if the new changes work.
  • Lua allows level designers (usually of lower technical grade) to work on creating new levels / missions etc without being able to wreak havok to the with the core game engine.
share|improve this answer

Lua can also be used to create applications to be run on TVs or Set-top-boxes under the ISDB-T International Digital TV system. This is a very interesting use of the language, distinct from its common use as scripting language.

share|improve this answer

Lua is so simple that you can understand the entire language (from a scripting side; not necessarily embedding) in just a few days. The syntax is simple and predictable. This leads to slightly verbose code in a few places (things like no ++ or even foo += 1), but it is easy to learn.

share|improve this answer

Lua is small, clean, and relatively friendly to non-programmers. It's designed to be embedded, with a more "native" language such as C or C++ making up the majority of the functionality. The marquee data type in Lua is a dictionary, much like other high-level interpreted languages.

Lua has gained a significant following in games, where it's often used to implement high level gameplay behaviors while calling into native code for performance-intensive tasks. Anecdotally, I've heard of Lua being used in this capacity on all current generation console platforms, including the Nintendo DS (if I recall correctly).

share|improve this answer

Awesome window manager uses Lua too.

share|improve this answer

Lua is a scripting language.

Main Advantages are given below -

-Free - Lua is free open-source software.

-Fast

-Lightweight

-Embeddable

-provides very good documentation

-Robust Language

I personally feel that LUA is very easy to learn because i have worked with LUA for Cross-platform Applications(Corona SDK).Syntax difficulty is much lesser than any other scripting language. We can learn LUA within few days.Some of the very useful cross-platforms based on LUA like - CORNA SDK, MOAI. The distinguishing feature of Lua is that ,When a lua script is loaded it is executed from start to end and any call you do is done immediately. I am giving you a very simple example -

Variables- Variables in Lua are just names, we don’t need to declare variables.Just use a variable name that is valid and start using it. as given example shows.

name="your name"

print(name)

age=18

print( age +10)

OutPut: your name

           28
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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