Email list hosting service & mailing list manager


Re: names at top level should be limited to names exported Andre van Tonder 29 Oct 2003 00:09 UTC

On Tue, 28 Oct 2003, bear wrote:

> Regarding the reference implementation for SRFI-45:
>
> I recommend changing
>
> (define (strict x) (cons 'value x))
>
> (define-syntax delay
>   (syntax-rules ()
>     ((delay exp) (lazy (strict exp)))))
>
> to
>
> (define-syntax delay
>    (syntax-rules ()
>       ((delay exp) (lazy (cons 'value x)))))
>

Thank you, yes.  I will change in in the next version.

Regards
Andre