15

Is there a compendium of virtual machines and languages derived or inspired by Lua? By derived, I mean usage beyond embedding and extending with modules. I'm wanting to research the Lua technology tree, and am looking for our combined knowledge of what already exists.

Current List:

Kara
  • 6,115
  • 16
  • 50
  • 57
Shane Holloway
  • 7,550
  • 4
  • 29
  • 37

3 Answers3

9

There's a good list of Lua implementations on the lua users wiki, including compilers/interpreters, languages implemented in lua and languages based on lua.

Luaforge might also be a good resource.

sjohnston
  • 612
  • 5
  • 21
  • Very embarrassed that I missed that page! However, the question has uncovered some more links that I'll do my best to add to this page. – Shane Holloway Mar 27 '10 at 16:35
7
  • Squirrel -- high level imperative/OO programming language
  • GSL Shell -- interactive CLI with easy access to the GNU Scientific Library (GSL)
  • Objective Lua -- almost pure superset of Lua that welds the Objective C object orientation system and syntax on top of the classic Lua language
  • Jill -- Java Implementation of Lua Language
  • Dao -- OO programming language with soft (or optional) typing, BNF-like macro system
  • MoonScript -- CoffeeScript inspired language that compiles into lua
Shira
  • 6,392
  • 2
  • 25
  • 27
Doug Currie
  • 40,708
  • 1
  • 95
  • 119
2

It's just an implementation, not a list, but there's Lua-ML. There's an application paper and a technology paper. The code is a little out of date; apparently the nightly build at http://www.cminusminus.org/ is broken.

Norman Ramsey
  • 198,648
  • 61
  • 360
  • 533