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

[no subject]



The following will not compile because the let tries to bind the I to
NIL!  LET should check and make sure that it binds each arg to
something of the correct type when it is defaulting like this.

(declare (fixnum i))

(defun foo ()
  (let (i)
    (setq i (read))
    (print i)))
-------