|
|
|
|
|
by roboguy12
3691 days ago
|
|
I thought that at first too about infixes being better (I've only been using Clojure for a few months), but I'm beginning to find the opposite. The only times when I miss an infix syntax is when doing math 1 + (2 * 10) - (12 / 3)
is so much easier for me to read to read than (- (+ 1 (* 2 10) (/ 12 3)))
But when working with functions, I much prefer the standard Clojure syntax. |
|
Also some don't like colored parens but I find them very clarifying.