Skip to content

Instantly share code, notes, and snippets.

@GarconsdeCrystal
Forked from audreyt/private.ls
Created October 23, 2021 14:12
Show Gist options
  • Save GarconsdeCrystal/9c3d7bf44f87a233043519f80873f9fe to your computer and use it in GitHub Desktop.
Save GarconsdeCrystal/9c3d7bf44f87a233043519f80873f9fe 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