[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

syntax error in reference implementation

This page is part of the web mail archives of SRFI 41 from before July 7th, 2015. The new archives for SRFI 41 contain all messages, not just those from before July 7th, 2015.



The reference implementation has the following syntax error:

  (define-syntax (stream-match-pattern x) ------)

It should be

  (define-syntax stream-match
    (lambda (x) ------)

After fixing that, I succeeded in running a small example in Larceny.

Andre