.he'SAVE'''
.fo'Aaron Sloman''1977'

.rs

.ce 2
SAVE
====

The function SAVE takes a function and a filename, runs the function, and
stores all output in the file specified, instead of printing it out on the
terminal.

E.g. if you have drawn a turtle picture and wish to save it in a file,
do
 	: LIB SAVE;
 	: SAVE("MYPIC", DISPLAY);

This will store the output in a file called MYPIC.P
