Guest User

Untitled

a guest
May 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1.  
  2. # Esto:
  3.  
  4. h = {:uno => 1, :dos => 2, :tres => 3}
  5.  
  6. # Es lo mismo que
  7.  
  8. h = Hash.new
  9. h[:uno] = 1
  10. h[:dos] = 2
  11. h[:tres] = 3
Add Comment
Please, Sign In to add comment