Guest User

Untitled

a guest
Feb 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. >> a = ['thing', 'another thing', 'more thing']
  2. => ["thing", "another thing", "more thing"]
  3. >> a.hash
  4. => -116267152
  5. >> a << 'new thing'
  6. => ["thing", "another thing", "more thing", "new thing"]
  7. >> a.hash
  8. => 816923262
  9. >> a.delete 'new thing'
  10. => "new thing"
  11. >> a
  12. => ["thing", "another thing", "more thing"]
  13. >> a.hash
  14. => -116267152
  15. >>
Add Comment
Please, Sign In to add comment