qck.hlp (Table of Contents; Topic list)
$DYNAMIC, $STATIC Metacommands
  Summary  Details  Example                Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 Specifies that arrays declared in subsequent DIM statements are dynamic
 ($DYNAMIC) or static ($STATIC) arrays.
 
    {REM | '} $DYNAMIC
    {REM | '} $STATIC
 
    ■ REM | '     REM or remark character ('); must precede all metacommands
 
    ■ $DYNAMIC    Specifies array storage as dynamic; allocates space for
                  arrays while the program is running
 
    ■ $STATIC     Specifies array storage as static; sets aside storage for
                  arrays during compilation
 
 See Also
    Array Storage Summary            Metacommand Summary
    REM Statement                    STATIC Statement