Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
$STATIC, $DYNAMIC and ERASE Programming Example
◄Example► ◄Contents► ◄Index► ◄Back►
──────────────────────────────────────────────────────────────────────────────
'This example uses the ERASE statement with the $DYNAMIC and $STATIC
'metacommands:
REM $DYNAMIC
DIM A(100, 100)
'Deallocates array A.
ERASE A
'Redimension array A.
REDIM A(5, 5)
REM $STATIC
DIM B(50, 50)
'This sets all elements of B equal to zero.
'B still has the dimensions assigned by DIM.
ERASE B