Skip to content

Instantly share code, notes, and snippets.

@audreyt
Created April 30, 2013 16:14
Show Gist options
  • Save audreyt/5489766 to your computer and use it in GitHub Desktop.
Save audreyt/5489766 to your computer and use it in GitHub Desktop.
Private instance variable in LiveScript
class Container
->
secret = 3
@dec = ->
return false unless secret > 0
return secret--
x = new Container
console.log x.dec!
console.log x.dec!
console.log x.dec!
console.log x.dec!
y = new Container
console.log y.dec!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment