[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- To: bug-lisp at MIT-AI
- From: Dick@MIT-AI
- Date: Sun, 25 Jul 82 18:03:00 GMT
- Original-date: Sunday, 25 July 1982 14:03-EDT
- Sender: DICK at MIT-OZ
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)))
-------