Skip to content

Instantly share code, notes, and snippets.

@madebysofa
Created December 30, 2009 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save madebysofa/266191 to your computer and use it in GitHub Desktop.
Save madebysofa/266191 to your computer and use it in GitHub Desktop.
Test1: =>
this.test = "test".
Test1.prototype.testFunction: =>
print("It works!").
t = new Test1()
t.testFunction()
Test2: =>
this.test = [1, 2, 3].
Test2.prototype.testFunction: =>
print("It works!").
t = new Test2()
t.testFunction()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment