This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== REDIM ====== Dynamically redimension an array at run-time. To use it you must declare the array in advance with the number subscripts desired. This allows the compiler to perform it's standard error checking on subscripts. **ie:** STRING s(1,1,1) REDIM s,5,5,5 LET s(4,4,4) = "Hello, World!" PRINTLN s(4,4,4) If an attempt is made to redimension an array with a different number of dimensions, an error or warning (as appropriate) will be generated. **See also:** Compilation, Options