Guest User

Untitled

a guest
Dec 11th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. module Calculator
  2. def add(num)
  3. self + num
  4. end
  5. def subtract(num)
  6. self - num
  7. end
  8. def multiply_by(num)
  9. self * num
  10. end
  11. def divide_by(num)
  12. self / num.to_f
  13. end
  14. end
  15.  
  16. class Numeric
  17. include Calculator
  18. end
Add Comment
Please, Sign In to add comment