RosettaCodeData/Task/Associative-array-Iteration/Ruby/associative-array-iteration...

12 lines
180 B
Ruby

for key, value in my_dict
puts "key = #{key}, value = #{value}"
end
for key in my_dict.keys
puts "key = #{key}"
end
for value in my_dict.values
puts "value = #{value}"
end