Skip to content

Instantly share code, notes, and snippets.

@florian
Created December 8, 2012 19:24
Show Gist options
  • Save florian/4241521 to your computer and use it in GitHub Desktop.
Save florian/4241521 to your computer and use it in GitHub Desktop.
A mixin implementation for CoffeeScript
Function::extend = (mixin) -> @[key] = value for key, value of mixin
Function::include = (mixin) -> @::[key] = value for key, value of mixin
class A
@z: 42
class B
@extend A
B.z # => 42
class C
@include A
(new C).z # => 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment