On Wed, Aug 18, 2010 at 1:11 PM, Sean Corfield <seancorfi...@gmail.com> wrote:
> On Wed, Aug 18, 2010 at 2:09 AM, michele <michelemen...@gmail.com> wrote:
>> (defn myfn-b [a b]
>>  (if (zero? b)
>>    a
>>    (recur
>>      (afn (bfn (...)) a)
>>      (dec b)
>>    )
>>  )
>> )
>
> I started out trying to do that but it ended up being far more work
> that it was worth - as Phil said, computer programs (IDEs / editors)
> do this much better. If you're using an IDE that auto-closes /
> auto-deletes forms, you really don't need to think about parentheses
> at all.
> --
> Sean A Corfield -- (904) 302-SEAN
> Railo Technologies, Inc. -- http://getrailo.com/
> An Architect's View -- http://corfield.org/
>

Also it adds up, you end up seeing much less code on your screen that way.

marc

-- 
Freedom is nothing but a chance to be better.
--Albert Camus

 The problem with socialism is that eventually you run out
of other people's money.
--Margaret Thatcher

-- 
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
Note that posts from new members are moderated - please be patient with your 
first post.
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

Reply via email to