I don't think this is a "let me google that for you" question. Let vs let* in Clojure is not at all the same as the popular usages of these forms in popular lisp dialects like Common Lisp.
I've thought it was confusing why let* existed in Clojure since let binding is only done in a sequential manner, but I think some answers given here are helpful. Just to point out Clojure dynamic var binding is done in a parallel/unordered way which resembles how Common Lisp let was done. However this is a completely different function and not a special form. Just for comparison with CL. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
