Indexed Arrays
ZPL has a second kind of arrays called indexed arrays
Indexed arrays are similar to arrays in conventional languages:
var TABLE : array [1..3,1..100] of integer;
name keywd bounds kw type
Indexed arrays are subscripted: [ i, j]
Indexed arrays are not a source of parallelism
Use indexed arrays for local tables, building data structures, local serial computation, etc.