"paolo" <tarpanelli@libero.it> writes:
> How can I save my work in Maxima without loose it??
> What are the cammand needed to save in file and to load the file next??
(C1) x:'y;
(D1) y
(C2) foo(x):=1+x;
(D2) foo(x) := 1 + x
(C3) save("myworld.lisp",all);
(D3) myworld.lisp
Note that this will create a new file or overwrite an existing file
with this name in the current directory. Also, you might prefer to
save only selected parts of your session. Please refer to the info
manual entry of SAVE for details.
You restore a saved session by loading the corresponding file in the
usual way
(C1) load("myworld.lisp");
(D3) myworld.lisp
(C4) foo(x);
(D4) y + 1
(C5) fundef(foo);
(D5) foo(x) := 1 + x
Please note that this will work only if you have have a current
development version of Maxima or at least of the file src/dskfn.lisp
from the CVS repository at sourceforge (if you don't have the cvs
program, you can fetch single files via a web interface, see the links
on the Maxima project page).
Perhaps we should add something like this to the FAQ?
Wolfgang