guile-user
[Top][All Lists]
Advanced

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

Re: C++ declaration style programming?


From: Han-Wen Nienhuys
Subject: Re: C++ declaration style programming?
Date: Wed, 21 Jan 2004 15:26:12 +0100

address@hidden writes:
> Then what about this:
> 
> (let ((a (something)))
>   (display a)
>   (let ((b (something-else a)))
>     ..
> 
> or
> 
> (let* ((a (something))
>        (b (something-else a)))
>   (display a)
>   ..

Your 2nd is not always possible due to side effects, your 1st was my
first gripe: it introduces deep nesting if you do this 10 times.

 

-- 

 Han-Wen Nienhuys   |   address@hidden   |   http://www.xs4all.nl/~hanwen 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]