In any Lisp, I think parens are for the compiler and indentation is
for humans.

Regards,
Shantanu

On Aug 19, 10:20 am, Rayne <disciplera...@gmail.com> wrote:
> It isn't helpful at all to me. My eyes bleed when I see code written
> like that.
>
> It may be helpful to some people, but I don't see the point when I
> have an editor that can match parens for me without any real work on
> my part. The parens aren't something I feel I need to "maintain",
> because between paredit and paren matching, I never have problems with
> them.
>
> On Aug 18, 4:09 am, michele <michelemen...@gmail.com> wrote:
>
>
>
> > Wouldn't that make it easier to keep track of them.
>
> > Example:
>
> > (defn myfn-a [a b]
> >   (if (zero? b)
> >     a
> >     (recur
> >       (afn (bfn (...)) a)
> >       (dec b))))
>
> > (defn myfn-b [a b]
> >   (if (zero? b)
> >     a
> >     (recur
> >       (afn (bfn (...)) a)
> >       (dec b)
> >     )
> >   )
> > )

-- 
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