Skip to content

Instantly share code, notes, and snippets.

@525c1e21-bd67-4735-ac99-b4b0e5262290
Created September 20, 2010 07:03
Show Gist options
  • Save 525c1e21-bd67-4735-ac99-b4b0e5262290/587519 to your computer and use it in GitHub Desktop.
Save 525c1e21-bd67-4735-ac99-b4b0e5262290/587519 to your computer and use it in GitHub Desktop.
class Animal
constructor: (@name) ->
@move(3)
move: (meters) ->
alert @name + " moved " + meters + "m."
animal = new Animal("capybara")
var Animal, animal;
Animal = function(_a) {
this.name = _a;
this.move(3);
return this;
};
Animal.prototype.move = function(meters) {
return alert(this.name + " moved " + meters + "m.");
};
animal = new Animal("capybara");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment