fork download
  1. h = Hash.new
  2. h['size'] = 'big'
  3. h['color'] = 'red'
  4. h['brand'] = 'ford'
  5. puts h.inspect
Success #stdin #stdout 0s 4760KB
stdin
Standard input is empty
stdout
{"size"=>"big", "color"=>"red", "brand"=>"ford"}