triginometry



Semyon Glazyrin wrote:
> I'm studing this code now. I thought that step-by-step debugging could
> speed up my studing. But step-by-step debugging I mean something like
> emacs+gdb regime for C programs.
>   
This depends very much on the lisp implementation you are using and how
the code is compiled.  You can put a breakpoint at the start of the
function and then step through one form at a time.

Even though the lisp that I normally use (cmucl) has this ability, I
rarely use it.  I find it much easier to just edit the function, put in
prints and stuff, and (compile and) load the function into maxima and
use it.

Ray