From: Philippe Meunier (meunier at ccs.neu.edu) Date: Fri Sep 27 16:52:52 EDT 2002 |
|
MJ Ray wrote: >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? Because there's a bug :-) I'm going to fix that. In the meantime you can select "mzscheme" as the language level and it should work. Philippe
Posted on the users mailing list. |
|