Listing and Undefining Variables

After you have been working for a while you may want to find out what variables you have defined (using "2D def). The function "2D variables will produce a listing:
> (variables)
CO
HC
RURAL
URBAN
PRECIPITATION
PURCHASES
NIL
>

If you are working on a 1Mb Macintosh you may occasionally want to free up some space by getting rid of some variables you no longer need. You can do this using the "2D undef function:

> (undef 'co)
CO
> (variables)
HC
RURAL
URBAN
PRECIPITATION
PURCHASES
NIL
>