Skip to content

Instantly share code, notes, and snippets.

@kmandreza
Created July 1, 2012 01:45
Show Gist options
  • Save kmandreza/3026453 to your computer and use it in GitHub Desktop.
Save kmandreza/3026453 to your computer and use it in GitHub Desktop.
Instance Method Calculator
class Numeric
def add(num)
self + num
end
def subtract(num)
self - num
end
def multiply(num)
self * num
end
def divide_by(num)
result = self.to_f / num.to_f
end
end
puts 8.divide_by(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment