[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Is it a bug?




What kind of crap are you using?  Eg, "MzScheme version 100alpha1,
Copyright (c) 1995-99 PLT" gives:

	(list (expt 0 0) (expt 0.0 0.0) (expt 0.0 0) (expt 0 0.0)) ==>
	(1 1.0 1 1.0)

Peace, Wolfgang.

Giorgio Scorzelli <scr.giorgio@cogesic.it> wrote:
> I have a strange problem with mzscheme. I start the interpreter and
> type:
> 
>     (expt 0 0)
>     SCHEME SAYS  "1" (OK!)
> 
>     (expt 0.0 0.0)
>     SCHEME SAYS "1.0" (OK!)
> 
>     (expt 0.0 0)
>     SCHEME SAYS "+inf.0" (???)
> 
>     (expt 0 0.0)
>     SCHEME SAYS "1.0"