RosettaCodeData/Task/Associative-array-Iteration/Brat/associative-array-iteration.brat
Ingy döt Net 518da4a923 B
2013-04-10 16:19:29 -07:00

16 lines
226 B
Text

h = [ hello: 1 world: 2 :! : 3]
#Iterate over key, value pairs
h.each { k, v |
p "Key: #{k} Value: #{v}"
}
#Iterate over keys
h.each_key { k |
p "Key: #{k}"
}
#Iterate over values
h.each_value { v |
p "Value: #{v}"
}