Re: difference between (let) and (bind)

2011-07-28 Thread Alexander Burger
Hi Edwin, On Thu, Jul 28, 2011 at 4:48 AM, Tomas Hlavaty t...@logand.com wrote: Hi Edwin, thinking about it a bit, i can just do away with one and live with the other?  say, can i just live with (bind)? yes, but it is more convenient to write let in your programs instead of the

difference between (let) and (bind)

2011-07-27 Thread Edwin Eyan Moragas
Hi list, looking at the docs, looks like (bind) is just a fancy way of doing (let). is this correct? i tried looking at the source but i'm still trying to decipher it. also checked out wl.java. both (let) and (bind) are quite similar. is this so? /e -- UNSUBSCRIBE:

Re: difference between (let) and (bind)

2011-07-27 Thread Edwin Eyan Moragas
Hi Tomas, On Thu, Jul 28, 2011 at 1:27 AM, Tomas Hlavaty t...@logand.com wrote: Hi Edwin, roughly speaking, bind is a function while let is a macro.  They differ in argument evaluation.  bind is programmable while let is more of a syntax thingy. thank you for this. thinking about it a bit,

Re: difference between (let) and (bind)

2011-07-27 Thread Tomas Hlavaty
Hi Edwin, thinking about it a bit, i can just do away with one and live with the other? say, can i just live with (bind)? yes, but it is more convenient to write let in your programs instead of the bind with constructing the binding list manually. However, in certain situations, one needs an

Re: difference between (let) and (bind)

2011-07-27 Thread Edwin Eyan Moragas
On Thu, Jul 28, 2011 at 4:48 AM, Tomas Hlavaty t...@logand.com wrote: Hi Edwin, thinking about it a bit, i can just do away with one and live with the other?  say, can i just live with (bind)? yes, but it is more convenient to write let in your programs instead of the bind with constructing