Category:MoonScript: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 1: Line 1:
[http://moonscript.org/ MoonScript] is a dynamic scripting language that compiles into Lua. It gives you the power of one of the fastest scripting languages combined with a rich set of features.
[http://moonscript.org/ MoonScript] is a dynamic scripting language that compiles into Lua. It gives you the power of one of the fastest scripting languages combined with a rich set of features.


<nowiki>class Thing
name: "unknown"

class Person extends Thing
say_name: => print "Hello, I am", @name

with Person!
.name = "MoonScript"
\say_name!
</nowiki>
MoonScript can either be compiled into [[Lua]] and run at a later time, or it can be dynamically compiled and run using the moonloader. It’s as simple as require "moonscript" in order to have Lua understand how to load and run any MoonScript file.
MoonScript can either be compiled into [[Lua]] and run at a later time, or it can be dynamically compiled and run using the moonloader. It’s as simple as require "moonscript" in order to have Lua understand how to load and run any MoonScript file.