Skip to content

Instantly share code, notes, and snippets.

@laser
Created January 22, 2014 21:30
Show Gist options
  • Save laser/8567704 to your computer and use it in GitHub Desktop.
Save laser/8567704 to your computer and use it in GitHub Desktop.
Stateful Calculator
class StatefulCalculator
def initialize
@total = 0
end
def add(x)
@total += x
self
end
def div(x)
@total /= x
self
end
def result
@total
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment