[r6rs-discuss] "Unspecified"

Marcin 'Qrczak' Kowalczyk qrczak at knm.org.pl
Mon Sep 25 06:12:02 EDT 2006


William D Clinger <will at ccs.neu.edu> writes:

> that partial solution does not solve the problem for other
> R5RS-compatible code, e.g.
>
>     (let* ((v (f ...))
>            (ignored (vector-set! v i ...))
>            (v2 (g v ...)))
>       ...)

Ignoring R5RS compatibility, my preferred way for writing such code
would be:

   (define v (f ...))
   (vector-set! v i ...)
   (define v2 (g v ...))
   ...

-- 
   __("<         Marcin Kowalczyk
   \__/       qrczak at knm.org.pl
    ^^     http://qrnik.knm.org.pl/~qrczak/



More information about the r6rs-discuss mailing list