RosettaCodeData/Task/Associative-array-Iteration/Ring/associative-array-iteration.ring

7 lines
159 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
# Project : Associative array/Iteration
lst = [["hello", 13], ["world", 31], ["!", 71]]
for n = 1 to len(lst)
see lst[n][1] + " : " + lst[n][2] + nl
next