MoonScript is a dynamic scripting language that compiles intoLua. It gives you the power of the fastest scripting language combined with a rich set of features.
See Lua
class Thing
name: "unknown"
class Person extends Thing
say_name: => print "Hello, I am", @name
with Person!
.name = "Moonscript"
\say_name!