moonscript/tests/inputs/class.moon

23 lines
291 B
Plaintext
Raw Normal View History

2011-06-15 06:13:33 +00:00
class Hello
new: (@test, @world) =>
print "creating object.."
hello: =>
print @test, @world
__tostring: => "hello world"
x = Hello 1,2
x:hello()
print x
2011-06-16 05:41:17 +00:00
class Simple
cool: => print "cool"
class Yikes extends Simple
new: => print "created hello"
x = Yikes()
x:cool()
2011-06-15 06:13:33 +00:00