How to kill all but a function?



  You might find it useful to handle your redefinitions etc this way:

load("setup");


where the file "setup"  looks like

kill(.....),
... commands...

.

You could even have a function

f():=load("setup")

in the file "setup"

So after loading setup  once,  you can re-load it by typing f();


RJF