Skip to content

Instantly share code, notes, and snippets.

@laser
Created April 25, 2014 21:17
Show Gist options
  • Save laser/11303586 to your computer and use it in GitHub Desktop.
Save laser/11303586 to your computer and use it in GitHub Desktop.
Calculator Service
class Calculator
def add(a, b)
return a+b
end
def subtract(a, b)
return a-b
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment