fork(4) download
  1. my_hash = Hash.new
  2.  
  3. my_key = "key000"
  4. my_hash[my_key] = "my_value"
  5.  
  6. puts my_hash
Success #stdin #stdout 0.06s 9712KB
stdin
Standard input is empty
stdout
{"key000"=>"my_value"}