[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: nested comments (please correct lexical scope)
> 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)