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

12 lines
180 B
Ruby
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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