<div dir="ltr"><div>Hi -</div><div>I did the standard installation on my Windows 7, everything seems OK except the trace function. See for example, the following trace is executing but its not doing much. Thanks very much for letting me know what might be wrong below.</div>
<div> </div><div>; SLIME 2011-02-04<br>CL-USER> (defun factorial (N)<br>  "Compute the factorial of N."<br>  (if (= N 1)<br>      1<br>    (* N (factorial (- N 1)))))</div><div>FACTORIAL</div><div><br>CL-USER> (trace factorial)<br>
NIL</div><div><br>CL-USER> (factorial 4)<br>0> Calling (FACTORIAL 4) <br><0 FACTORIAL returned 24<br>24</div><div><br>CL-USER> </div></div>