DIM Verb - BBj
For this topic's original documentation, see the DIM Verb.
BBj-Specific Information
Description
DIM X![dimensions] allocates an object array.
DIM N[10](number) can be used to initialize numeric array elements.
DIM allows more than 3 array dimensions, and the DIMS() function returns
information about extra dimensions if used. Note that multi-dimensional
arrays use up memory quickly, so this feature should be used sparingly.
BBj does not allow the use of parenthesis to reference or dimension numeric arrays. For example, DIM A(3) generates an !ERROR=20 in BBj whereas BBx converts the line to DIM A[3].
Example
|