fork download
  1. h = { bacon: "protein", apple: "fruit" }
  2.  
  3. h.each { |k, v| puts "Key=#{k}, Value=#{v}" }
  4.  
Success #stdin #stdout 0.01s 8024KB
stdin
Standard input is empty
stdout
Key=bacon, Value=protein
Key=apple, Value=fruit