Missing parenthesis in example Jakub T. Jankiewicz (07 Dec 2020 08:16 UTC)
Re: Missing parenthesis in example Adam Nelson (11 Dec 2020 02:02 UTC)
Re: Missing parenthesis in example John Cowan (11 Dec 2020 02:47 UTC)
Re: Missing parenthesis in example Arthur A. Gleckler (11 Dec 2020 04:09 UTC)

Missing parenthesis in example Jakub T. Jankiewicz 07 Dec 2020 08:16 UTC
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 _))