Skip to content

Instantly share code, notes, and snippets.

@freshtonic
Created July 9, 2010 01:40
Show Gist options
  • Save freshtonic/468913 to your computer and use it in GitHub Desktop.
Save freshtonic/468913 to your computer and use it in GitHub Desktop.
class Foo
constructor: (id) ->
@id: id
instanceMethod: ->
alert("instanceMethod was called on instance ${@id}")
f1: new Foo("toot")
f2: new Foo("woot")
f1.instanceMethod()
f2.instanceMethod()
Foo.klassMethod: ->
alert("class method called on class Foo");
Foo.klassMethod()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment