Skip to content

Instantly share code, notes, and snippets.

Created March 28, 2012 22:39
Show Gist options
  • Save anonymous/5f31c0b7c420014b39e6 to your computer and use it in GitHub Desktop.
Save anonymous/5f31c0b7c420014b39e6 to your computer and use it in GitHub Desktop.
class Array
def drop!(int)
initialize_clone self[int..-1]
end
end
# => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment