Skip to content

Instantly share code, notes, and snippets.

View sebslomski's full-sized avatar

Sebastian Slomski sebslomski

View GitHub Profile
@sebslomski
sebslomski / singleton.coffee
Created May 19, 2011 12:47 — forked from meltingice/singleton.coffee
Example singleton class and example for Coffeescript
class Singleton
# We can't make private variables!
__instance = null
# Static singleton retriever/loader
@get: ->
if not @__instance?
@__instance = new @
@__instance.init()