[plt-scheme] Using DrScheme Debugger
If I put (fact 6) in the definitions window, it would run fine. The
error only occurs when I put (fact 6) in the interaction window.
However, isn't interaction window is the expected place to enter this
kind of expression to be evaluated?
On Sun, Sep 28, 2008 at 1:52 PM, Woodhouse Gregory
<gregory.woodhouse at gmail.com> wrote:
> How are you invoking the debugger and what is the version. I typically put a
> call like (fact 6) in the definitions window and then click debug rather
> than run. I have no problems in 4.1.0.3.
>
>
> "If everything seems under control,
> you're just not going fast enough."
> -- Mario Andretti
> http://www.gwoodhouse.com
> http://GregWoodhouse.ImageKind.com
>
>
>
> On Sep 28, 2008, at 9:49 AM, e.jel 2.7 wrote:
>
> (define (fact n)
>
> (if (= n 1)
>
> 1
>
> (* n (fact (- n 1)))))
>