rubyにおけるhashの実装プログラム

rubyコード:
h = {'a’=>’aaa’,2=>’bbb’}
h.each do |a,b|
puts a.to_s+"–“+b.to_s
end

Source

Posted by arkgame