Skip to content

Instantly share code, notes, and snippets.

View alsonkemp's full-sized avatar
💭
Stuff or something...

Alson Kemp alsonkemp

💭
Stuff or something...
View GitHub Profile
# standard constructor
Test1: constructor =>
this.test = "test"
Test1.prototype.testFunction: =>
print("It works!")
return null
t = new Test1()
t.testFunction()