FORMULA LANGUAGE


Examples: @While
This agent displays the elements of the Categories field one at a time.

n := 1;
@While(n <= @Elements(Categories);
@Prompt([OK]; "Category " + @Text(n); Categories[n]);
n := n + 1)

See Also