9 lines
253 B
Text
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
|