Skip to content

Instantly share code, notes, and snippets.

@Dykam
Created April 24, 2011 18:07
Show Gist options
  • Save Dykam/939755 to your computer and use it in GitHub Desktop.
Save Dykam/939755 to your computer and use it in GitHub Desktop.
class A
foo: "bar"
class B extends A
zoo: "zar"
alert (new B).foo # "bar"
alert (new B).zoo # "zar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment