Home
Documentation
Packages
MOOCode, Plastic
/* Some Plastic syntax. * This syntax is as currently implemented by the Plastic package. It * it mostly a superset of original MOOcode. */ 1 2.0 #3 "four" E_PERM // this is a comment list = {1, 2, 3, 4} list[1] = 'one' map = ["one" -> 1, "two" -> 2, "three" -> 3] map["one"] = "one" if (condition) statement statement end for x in (collection) statement statement end for x in [from..to] statement statement end while (condition) statement statement end try statement statement except exception (ANY) statement end {foo, bar = 1, @baz} = args !! E_ARGS notify(player, '"test" 1 2 3') return #-1