Skip to content

Instantly share code, notes, and snippets.

@santosh79
Created November 16, 2009 21:24
Show Gist options
  • Save santosh79/236329 to your computer and use it in GitHub Desktop.
Save santosh79/236329 to your computer and use it in GitHub Desktop.
#Re-writing a method inside itself can be done in ruby
def meth1
def meth1
end
puts "in old method"
end
meth1 #This prints "in old method"
meth1 #This does not
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment