Why is it customary to put many closing parentheses on one line in Lisp-based languages?

后端 未结 8 1166
野的像风
野的像风 2021-02-05 01:19

Usually code looks like this:

(one-thing
    (another-thing arg1 (f arg5 r))
    (another-thing arg1 (f arg5 r)))

Why doesn\'t it like this?:

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-05 02:02

    Short answer: Deviating from recognized standards only serves to alienate potential contributors. No one style is optimally better than another.

    Long answer: http://blog.fogus.me/2010/08/30/community-standards/

提交回复
热议问题