fork download
  1. objs = Hash.new([])
  2.  
  3. objs[:y] << 3
  4.  
  5. p objs
  6. p objs[:y]
Success #stdin #stdout 0.01s 7408KB
stdin
Standard input is empty
stdout
{}
[3]