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

Re: type real



Sam Shteingold <sshteingold@cctrading.com> writes:
> 
>      CLISP complains on
>      (declare (real zz))

(declare (type real zz)) should work. But as you know, type declarations
are completely ignored by clisp. (Safety first - CLISP don't trust user's
declarations. This also greatly simplifies the compiler :-))

Bruno