Skip to content

Instantly share code, notes, and snippets.

View algirdasrascius's full-sized avatar

Algirdas Raščius algirdasrascius

View GitHub Profile
class Singleton
@get: -> @instance ?= new @
class Test extends Singleton
constructor: -> alert "Test constructed"
run: -> alert "Test run"
class OtherTest extends Singleton
constructor: -> alert "OtherTest constructed"
run: -> alert "OtherTest run"