____________________
Racket Users list:
http://lists.racket-lang.org/users
Unfortunately, the error message is not reporting the leftmost error
in this situation. The real source of the problem is that the lambda
character λ is not in R5RS. The whole purpose of the r5rs language is
to be extremely conservative.
Insert this macro definition at the top of your R5RS code.
(define-syntax λ
(syntax-rules ()
((_ . more) (lambda . more))))
--
Jens Axel Søgaard