Array notation: it possible to use arrays with GuiXT?
Array notation in the form x(i) is not possible in GuiXT, but you can use one of the following ways to deal with a variable number of data:

- use variable names that contain an index, e.g. V[x.50] or, with a symbolic index variable V[i], V[x.&V[i]]. For example,

Set V[i] 1

label l1

Set V[x.&V[i]] "abc..."

// next index

Set V[i] &V[i] + 1

if V[i<100]

goto l1

endif

- use the "CopyText" statement to put data into a text variable ("-appendline" option) and to read lines from the text.