|
|
|
|
|
by wsgeek
2930 days ago
|
|
Lisps are all very, very cool -- you basically get to build your own world. And the macros -- so powerful. But the parens! Not the number of them, as that is about the same as other langs, but the placement of them: Sample factorial function: (define fac
(lambda (n)
(if (= n 0)
1
(* n (fac (- n 1)))))) ; <<--- look at those parens! And with Clojure, you don't have proper tail recursion, so you'll have to add some Clojure-only thing in there to prevent the above code from blowing up for large numbers. There's really no getting around it -- Lisp, for many people, is just hard to parse. Consider: def fac(n): n < 2 ? n : n * fac(n - 1) Yay! No noise. But I agree, there are some cool things about Clojure. |
|
One level of parentheses comes from using a dialect which uses a variable definition and lambda to define a function, instead of having function-defining syntax like defun.
requires knowledge of the ternary operator and its precedence. Someone who has no clue about the ternary operator will not make heads or tails out of this. The Lisp is impossible to mis-parse, even by a programmer who doesn't know Lisp. You might not know how if works, but you can't miss the fact that (if ...) is a unit, which is enclosing four things: if, (= n 0), 1, and (* n ...).You've loaded the readability dice by writing it on one line. To help with the readability issues in both languages, we can use multiple lines and indentation: