Skip to content

Instantly share code, notes, and snippets.

@yogurt1
Last active July 24, 2016 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yogurt1/58870a601ff783e4da1ed089b166f5be to your computer and use it in GitHub Desktop.
Save yogurt1/58870a601ff783e4da1ed089b166f5be to your computer and use it in GitHub Desktop.
class Class
bar: -> console.log @a
class SubClass extends Class
inst = new SubClass
inst.a = 10
inst.bar() # => 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment