Skip to content

Instantly share code, notes, and snippets.

@cfcosta
Created October 17, 2012 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cfcosta/3903239 to your computer and use it in GitHub Desktop.
Save cfcosta/3903239 to your computer and use it in GitHub Desktop.
>> x = 1,2,3
=> [1, 2, 3]
>> x.object_id
=> 70290220560040
>> x.delete_if { |y| y > 1 }
=> [1]
>> x.object_id
=> 70290220560040
>> x
=> [1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment