lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, Dec 1, 2011 at 2:51 PM, Dieter Plaetinck <dieter@plaetinck.be> wrote:
is there anything about lua that makes it more appropriate to build this kind of technology vs _javascript_?

Coroutines. Look at any non-trivial node.js program, it's an awful mess of nested callbacks; very hard to read, impossible to maintain. Coroutines fix that, and that's a killer feature by itself. 

Performance questions might also weight in favor Lua, but that's really secondary, compared to making user code maintainable.