Skip to content

Instantly share code, notes, and snippets.

@IvanDerlich
Last active May 21, 2020 04:45
Show Gist options
  • Save IvanDerlich/28fd6c8bb35e2c134460a6acf0e66672 to your computer and use it in GitHub Desktop.
Save IvanDerlich/28fd6c8bb35e2c134460a6acf0e66672 to your computer and use it in GitHub Desktop.
Gist created for Rspec Article. Published first in medium.
class Calculator
def addition a,b
a + b
end
def substraction a,b
a - b
end
def multiplication a,b
a * b
end
def division a,b
return "Indeterminate" if b==0 && a==0
return "Positive Infinity" if b == 0 && a > 0
return "Negative Infinity" if b == 0 && a < 0
(a / b.to_f)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment