Skip to content

Instantly share code, notes, and snippets.

@djthread
Created October 5, 2012 04:02
Show Gist options
  • Save djthread/3838010 to your computer and use it in GitHub Desktop.
Save djthread/3838010 to your computer and use it in GitHub Desktop.
coffeescript encapsulation
# without a class
thing = ->
thePrivate = -> console.log "I'm private"
thePublic: -> console.log "I'm public"
t = thing()
t.thePublic()
t.thePrivate()
# with one
class Foo
foo = -> "bink"
bar: -> console.log "and #{foo()}"
g=new Foo
g.bar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment