Skip to content

Instantly share code, notes, and snippets.

@nthj
Created June 25, 2013 20:04
Show Gist options
  • Save nthj/5861886 to your computer and use it in GitHub Desktop.
Save nthj/5861886 to your computer and use it in GitHub Desktop.
calculator
def calculator(operator, expression, *exprs)
exprs.each { |n| expression = expression.send(operator, n) }
expression
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment