Honestly? The second one, but I did say I didn't like the 'big let' style, maybe that is why.
Cheers Tom 2009/1/7 Mark Volkmann <r.mark.volkm...@gmail.com> > > On Wed, Jan 7, 2009 at 3:13 AM, Tom Ayerst <tom.aye...@gmail.com> wrote: > > Hi Mark, > > > I agree they could be inlined, but I find that style easier to read. > For example, these are equivalent. > > (defn make-cookies-1 [flower baking-soda salt button sugar eggs] > ; let describes the step-by-step process for making cookies. > (let [bowl (find-bowl :small) > bowl (add-ingredients bowl flower baking-soda salt) > batter (mix bowl) > batter (add-and-beat batter eggs flour) > baking-sheet (find-baking-sheet) > baking-sheet (make-dough-balls baking-sheet batter)] > (bake baking-sheet))) > > (def make-cookies-2 [flower baking-soda salt button sugar eggs] > (bake (make-dough-balls > (find-baking-sheet) > (add-and-beat (mix (add-ingredients (find-bowl) flower aking-soda > salt) eggs flour)))) > > Which of these is easier to understand? > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---