Skip to content

Instantly share code, notes, and snippets.

@gbpereira
Last active January 10, 2018 01:48
Show Gist options
  • Save gbpereira/7b75d4c955726cb639d5 to your computer and use it in GitHub Desktop.
Save gbpereira/7b75d4c955726cb639d5 to your computer and use it in GitHub Desktop.
class OperatorOverload
def initialize(value = nil)
@value = value || 0
end
def +(n)
puts 'método sobrescrito'
@value + n
end
def *(n)
puts 'método sobrescrito'
@value * n
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment