fork download
  1. my_hash = { one: 1, two: 2, three: 3 }
  2. my_hash.each { |k, v| print k, " ", v, "\n" }
Success #stdin #stdout 0.06s 9664KB
stdin
Standard input is empty
stdout
one 1
two 2
three 3