CoffeeScript Class
by justinwyllie
CoffeeScript
class Car
constructor: (@model) ->
console.log @model
drive: () ->
alert "You are driving a " + @model;
delayed: () ->
-> this.model
myRide = new Car("BMW")
letsDrive = myRide.drive
letsDrive() # alerts "You are driving a undefined"