Skip to content

Instantly share code, notes, and snippets.

View melvynhills's full-sized avatar

Melvyn Hills melvynhills

View GitHub Profile
@melvynhills
melvynhills / gist:1153858
Created August 18, 2011 11:14
Method types in CoffeeScript
class Foo
privateMethod = ->
console.log "privateMethod"
publicMethod: ->
console.log "publicMethod"
privateMethod()
@staticMethod: ->