Skip to content

Instantly share code, notes, and snippets.

@nthx
Created May 16, 2012 23:16
Show Gist options
  • Save nthx/2714818 to your computer and use it in GitHub Desktop.
Save nthx/2714818 to your computer and use it in GitHub Desktop.
Mixin short example
class Nothing
constructor: (@name="nothing") ->
class Presenter extends Mixin
presentYourself: =>
"My name is #{@name}"
something = new Nothing()
ObjectHelper.addRole(something, Presenter)
something.presentYourself() == "My name is nothing"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment