6 lines
159 B
Text
6 lines
159 B
Text
# 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
|