Created
July 1, 2012 02:18
-
-
Save kmandreza/3026513 to your computer and use it in GitHub Desktop.
Module
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Calculator | |
def add(num) | |
self + num | |
end | |
def subtract(num) | |
self - num | |
end | |
def multiply_by(num) | |
self * num | |
end | |
def divide_by(num) | |
result = self.to_f / num.to_f | |
end | |
end | |
class Numeric | |
include Calculator | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment