RosettaCodeData/Task/Associative-array-Iteration/Ruby/associative-array-iteration-2.rb
2016-12-05 22:15:40 +01:00

11 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