fork download
  1. object = { :x => 100, :y => -200, :z => 300 }
  2. puts :z.object_id
  3. object1= { :z => 100, :y => -200, :x => 300 }
  4. puts :z.object_id
Success #stdin #stdout 0.01s 7452KB
stdin
Standard input is empty
stdout
147128
147128