Created
October 2, 2012 04:14
-
-
Save jakejscott/3816131 to your computer and use it in GitHub Desktop.
TypeScript vs CoffeeScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Animal | |
constructor: (@name) -> | |
move: (meters) -> | |
alert @name + " moved #{meters}m." | |
class Snake extends Animal | |
move: -> | |
alert "Slithering..." | |
super 5 | |
class Horse extends Animal | |
move: -> | |
alert "Galloping..." | |
super 45 | |
sam = new Snake "Sammy the Python" | |
tom = new Horse "Tommy the Palomino" | |
sam.move() | |
tom.move() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Animal { | |
constructor (public name: string) { | |
} | |
move (meters: number) { | |
return alert(this.name + " moved " + meters + " meters") | |
} | |
} | |
class Snake extends Animal { | |
move() { | |
alert('slithering') | |
return super.move(5) | |
} | |
} | |
class Horse extends Animal { | |
move() { | |
alert('galloping') | |
return super.move(45) | |
} | |
} | |
var sam = new Snake("sammy the python"); | |
var tom = new Horse("Tommy the Palomino"); | |
sam.move(); | |
tom.move(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment