RosettaCodeData/Task/Associative-array-Iteration/Crystal/associative-array-iteration.crystal
2023-07-01 13:44:08 -04:00

13 lines
140 B
Text

dict = {'A' => 1, 'B' => 2}
dict.each { |pair|
puts pair
}
dict.each_key { |key|
puts key
}
dict.each_value { |value|
puts value
}