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

Re: names at top level should be limited to names exported

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



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