fork download
  1. {a: 1, b: 2}.each_with_index { |pair, index| p pair[0], pair[1] }
Success #stdin #stdout 0.02s 7452KB
stdin
Standard input is empty
stdout
:a
1
:b
2