Skip to content

Instantly share code, notes, and snippets.

@zhangxu
Last active August 29, 2015 14:02
Show Gist options
  • Save zhangxu/e4f502db336818245754 to your computer and use it in GitHub Desktop.
Save zhangxu/e4f502db336818245754 to your computer and use it in GitHub Desktop.
Ruby Monkey Patch
class String
def say_hello
"hello #{self}!"
end
end
puts "world".say_hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment