-----maxima-bounces at math.utexas.edu wrote: -----
>>>>>> "Stavros" == Stavros Macrakis
> writes:
>
> >> I have thought about always translating
>Maxima's input into Lisp and
> >> then running the Lisp code, instead of
>interpreting the internal s-expr representation.
For *amusement* only:
(%i1) load("tocl.lisp")$ <--- CVS version of tocl.
(%i2) :lisp(defun meval (e) (eval (expr-to-cl e)));
MEVAL
(%i2) 1+1.5;
(%o2) 2.5
(%i3) block([acc : 0], for i : 1 thru 10 do acc : acc + i,acc);
(%o3) 55
Again, this is just for amusement, not a proposal.
Barton