Skip to content

Instantly share code, notes, and snippets.

@yous
Created April 12, 2015 11:59
Show Gist options
  • Save yous/b0062b85cbbc37732a9c to your computer and use it in GitHub Desktop.
Save yous/b0062b85cbbc37732a9c to your computer and use it in GitHub Desktop.
class String
def to_s
'String'
end
end
class Fixnum
def to_s
'Fixnum'
end
end
def greeting(name)
puts "Hello, #{name}!"
end
greeting('John Doe')
# => Hello, John Doe!
greeting(42)
# => Hello, Fixnum!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment