RosettaCodeData/Task/Associative-array-Iteration/Ring/associative-array-iteration.ring
2018-06-22 20:57:24 +00:00

9 lines
253 B
Text

# Project : Associative array/Iteration
# Date : 2017/10/22
# Author : Gal Zsolt (~ CalmoSoft ~)
# Email : <calmosoft@gmail.com>
lst = [["hello", 13], ["world", 31], ["!", 71]]
for n = 1 to len(lst)
see lst[n][1] + " : " + lst[n][2] + nl
next