|
Values [addresses] are assigned to identifier in the same order that they appear in the specified list [table].
The action of the for ... in statement for lists can be emulated using a standard for loop and the list and sizeOf verbs, as follows:
temp = list (expression)
for i = 1 to sizeOf (temp)
identifier = temp [i]
statements
The action of the for ... in statement for tables can be emulated using a standard for loop and the sizeOf verb, as follows:
adrtable = address (expression)
for i = 1 to sizeOf (adrtable^)
identifier = @adrtable^ [i]
statements
The ability to iterate thru tables was added in Frontier 6.1.
|