Alan Manuel Gloria:
> <* define-library \\ (srfi 41 primitive)
> 
> export . (
>   stream-cons stream-null
>   stream-pair? stream-null? stream?
>   stream-car stream-cdr
>   stream-lambda
> )

which can then be closed with:
> *>



Quick confirmation, to make sure we have the same understanding...
When you surrounded "srfi 41 primitive" with parens, did you intend
it to mean something different than if they weren't?  Or was that just
a style you prefer?  Currently those parens aren't necessary; the "\\" goes
to the next line, and a line with space-separated parameters is already wrapped
into a list.  Thus, the preceding (with or without parens surrounding
the srfi 41 primitive) maps to:

(define-library
  (srfi 41 primitive)
  (export
    stream-cons
    stream-null
    stream-pair?
    stream-null?
    stream?
    stream-car
    stream-cdr
    stream-lambda))

At least, that's the intended semantic with the BNF and the way
it's currently implemented.

--- David A. Wheeler

------------------------------------------------------------------------------
The Go Parallel Website, sponsored by Intel - in partnership with Geeknet, 
is your hub for all things parallel software development, from weekly thought 
leadership blogs to news, videos, case studies, tutorials, tech docs, 
whitepapers, evaluation guides, and opinion stories. Check out the most 
recent posts - join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Readable-discuss mailing list
Readable-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/readable-discuss

Reply via email to