Skip to content

Instantly share code, notes, and snippets.

@nazt
Forked from jaykz52/Vehicle.coffee
Created February 16, 2011 04:53
Show Gist options
  • Select an option

  • Save nazt/828892 to your computer and use it in GitHub Desktop.

Select an option

Save nazt/828892 to your computer and use it in GitHub Desktop.
class Vehicle
drive: ->
alert "The vehicle moves forward!"
class Motorcyle extends Vehicle
drive: ->
alert "The Motorcyle moves forward!"
class Car extends Vehicle
drive: ->
alert "The car moves forward!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment