Re: Missing parenthesis in example
Adam Nelson 11 Dec 2020 02:02 UTC
Thanks for pointing that out. I noticed it a while ago, too, but I'm not
sure if it's possible to update a SRFI after finalization, or what the
process for that is.
On 12/7/20 3:16 AM, Jakub T. Jankiewicz wrote:
> I think that the spec file have typo, missing parenthesis:
>
> (chain xs
> (map (lambda (x) (+ x 1) _)
> (filter odd? _)
> (fold * 1 _))
>
> Missing closing of lambda.
>
> I think it should be:
>
> (chain xs
> (map (lambda (x) (+ x 1)) _)
> (filter odd? _)
> (fold * 1 _))