Guest User

Untitled

a guest
Jul 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. blah = ["a", "b", "c", "d"]
  2. @shit = blah
  3.  
  4. blah.each do |token|
  5. puts "deleting #{token}"
  6. @shit.delete(token)
  7. end
  8.  
  9. @shit.each do |token|
  10. puts "still have : #{token}"
  11. end
Add Comment
Please, Sign In to add comment