Re: let and nesting

2010-02-25 Thread kuniklo
On Feb 25, 7:50 pm, Adrian Cuthbertson wrote: > You can also do stuff in the middle of a let; > > (let [a vala >       b valb >       _ (do-something-with a b) >       c (some-fn a b) >       d (some-fn a b) >       _ (do-something a b c d) >       e (fn ...) >       f (fn )] >   (and-whatever

let and nesting

2010-02-25 Thread kuniklo
One of my least favorite things about common lisp was the degree of nesting it required for sequential variable definitions. For common code like this: (let (a vala) (b valb) ... do something with a & b... (let (c (fn a b)) (d (fn a b)) ... do something with a, b, c,