Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save barkinet/0fef614e2361f9bcbc04d1d923692247 to your computer and use it in GitHub Desktop.

Select an option

Save barkinet/0fef614e2361f9bcbc04d1d923692247 to your computer and use it in GitHub Desktop.
modified Mammal CoffeeScript example
class Mammal
constructor: (@species, @defining_char) ->
print: ->
"Hello I'm a " + @species + ". " +
"I have " + @defining_char + "."
cat = new Mammal('cat', 'claws')
alert(cat.print())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment