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

Re: nested comments (please correct lexical scope)

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



> From: Robby Findler <robby@xxxxxxxxxxxxxxx>
>> Please explain? In what circumstance would you actually prefer/require to
>> express:
>> 
>> (a #;#; b c) => (a)
>> 
>> Vs
>> 
>> (a #;b #;c) => (a)
> 
> Oh, I don't care about that. It's this one:
> 
>   (a
>    #;
>    b)
> 
> =>
> 
>   (a  b)
> 
> that would wreck everything.

Ok, I'm still missing it, as then why prefer/require:

  (
   a
   #;
   b
  )
=> (a)

vs

  (
   a
   #;b
  )
=> (a)