DELETE
Syntax
DELETE(p as POINTER)
Description
Deletes a dynamic variable
Parameters
p - A pointer to a dynamic variable created with the NEW function
Return value
None
Remarks
See Also: NEW
Example usage
DEF p as POINTER p = NEW(CHAR,1) '... DELETE p