Skip to content

Instantly share code, notes, and snippets.

@fuse
Created August 2, 2011 10:06
Show Gist options
  • Save fuse/1119946 to your computer and use it in GitHub Desktop.
Save fuse/1119946 to your computer and use it in GitHub Desktop.
window.Animal = class Animal
window.Dog = class Dog extends Animal
# convention pour une constante mais utilise var
STATES = ["sleeping", "eating"]
constructor: ->
# appelle le constructeur d'Animal
super
# méthode de l'objet
speak: ->
console.log "woff."
# variable de classe
@count: 0
# méthode statique
@incCount: -> @count++
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment