Guest User

Untitled

a guest
Nov 24th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. (hash[:foo] ||= []) << :hello
  2.  
  3. # means:
  4.  
  5. if hash[:foo]
  6. hash[:foo] << :hello
  7. else
  8. hash[:foo] = []
  9. hash[:foo] << :hello
  10. end
Add Comment
Please, Sign In to add comment