Deletesvariables and their symbols from $MAIN$, the main program level of PV-WAVE.
When DELVAR is used to delete a local variable, the variable is also deleted from the main program level. If DELVAR is called from a procedure, one of the two following requirements applies:
a = FINDGEN(3)
b = {structb, field1:1.0, field2:[5, 6, 7], $
field3:"pv-wave"}
c = 6L
INFO, a, b, c A FLOAT = Array(3) B STRUCT = - STRUCTB Array(1) C LONG = 6 DELVAR, a, c
INFO, a, b, c A UNDEFINED = Undefined B STRUCT = - STRUCTB Array(1) C UNDEFINED = Undefined DELVAR, b
INFO, a, b, c A UNDEFINED = Undefined B UNDEFINED = Undefined C UNDEFINED = Undefined