| From: MJ Ray (markj at cloaked.freeserve.co.uk) Date: Thu Sep 26 20:49:18 EDT 2002 |
|
Start DrScheme, select R5RS as the language level and enter the code:
(define lst
(lambda (n)
(if (<= n 0)
'()
(cons n (lst (- n 1))))))
into the editor. Click "Analyze". It goes red. Right-click the red and
pick "Show Errors" -- why does it give that error?
--
MJR|
---'--[ Luminas internet applications http://www.luminas.co.uk/ ]-----|
| Posted on the users mailing list. |
|