6 ms·
I agree, but I'm wondering what you think is missing or broken in Clojure to prevent it from being a Lisp? Sure, it sits on top of the Java type system and one
by hkolek 13y ago
I agree, but I'm wondering what you think is missing or broken in Clojure to prevent it from being a Lisp? Sure, it sits on top of the Java type system and one major thing I can think of that is lacking is the condition system (although, isn't this a only Common Lisp thing?). I don't think it has to be Lisp all the way down to be a Lisp dialect, if that's what you're getting at.
- anonymoushn 13y agoEvery other Lisp happens to have TCO, so if you try to port other Lisp programs to Clojure you generally get stack overflows.
- hkolek 13y agoBut afaik TCO is only a requirement for Scheme implementations, not for e.g. Common Lisp (i.e. you don't need to implement TCO to satisfy the Common Lisp standard). I don't see how the lack of TCO prevents it from being a valid Lisp dialect.
- cgag 13y agoDo you need to implement the common lisp standard to be "a lisp"? What is a lisp?
- hkolek 13y agoExactly my point. I was just using CL as example because I think it would be hard to argue that it is not a Lisp yet the standard doesn't guarantee TCO. > What is a lisp? It's a very good question. I think PG sums it up quite nicely in "Revenge of the Nerds" [1]. Although, now that I'm thinking about it, I'm not quite sure there's any point in classifying something as a Lisp or not... [1] http://www.paulgraham.com/icad.html http://www.paulgraham.com/icad.html
- gsg 13y agoEmacs lisp doesn't guarantee TCO (and in practice does not perform it at all), and yet few people claim that it is not a dialect of lisp.
- dschiptsov 13y agoWithout TCO you have stack overflows, and without proper numeric tower you have integer overflows. Roughly speaking, one of the aspect of why it isn't Lisp is underlying Java stuff.
- hkolek 13y agoI think we have already established that TCO is not necessary to be a Lisp (CL, Emacs Lisp). While it's true that Clojure doesn't have a proper numeric tower it does have bignum support and arbitrary precision math operators which will not overflow. But either way, imo this is not a defining feature of a Lisp dialect.
- dschiptsov 13y agoIn fact, all non-toy Lisp implementation provide TCO - http://0branch.com/notes/tco-cl.html http://0branch.com/notes/tco-cl.html because, it seems, it's a natural feature of a Lisp system (Scheme just requires it). Again, Lisp could be defined as a limited set of conventions/features. As long as some other features, such as CLOS added there is no problem, but if some features are broken, then it is not Lisp anymore. It is just doesn't walk like a duck. Let's say that Clojure was developed with a "put everything useful together" or Ruby-approach, if you wish, which is very popular for scripting languages, while development of Scheme and other Lisp dialects was founded on "put only what is absolutely essential, and done right". The first approach "stuff anything in" you could see almost everywhere. The second approach "research first, and do the best" is unpopular for the obvious reasons and could be rarely seen only in masterpieces, such as Gambit-C, nginx, old-school marvels such as Informix. So, in my opinion, Clojure is much closer to Ruby than to Lisp (let's not be deceived by parentheses) - it is a scripting language (to quickly put everything together with variety of clever special syntax and fancy data-structures without much thinking about implementation details). This is, of course, most productive approach to coding - this is why people love scripting languages so much.
- knome 13y agoYour manner of dismissing LISPs without TCO allows you is something of a No True Scotsman argument, enabling you to proclaim counter examples toys by merit of their being counter examples. Yes, most lisps have it. I don't think anyone denies emacs-lisp or AutoLISP were Lisps due to their lacking it. Your suggestion of "let's say ..." is based in what appears to be complete lack of familiarity with all of the languages involved. Providing useful libraries doesn't preclude having done things right. Supplying a bare minimum of libraries does not preclude having made them miserable. There are plenty of awkward moments in using Common Lisp libraries that have made this plain to me. Your suggestion that "research first, and do the best" is unpopular for "obvious reasons" is just hand-waving. The "obvious reasons" that are left unstated here are that "research first and do the best" languages general suck, hard. They suck because they sit in toy environments for years while the "release early and iterate" languages flourish under constant adaptation to real world usage. Both will have warts. The latter will be worth using. Suggesting that "Clojure is closer to Ruby that Lisp" is just silly. What lisp? Scheme and Common Lisp, both definitely Lisps, are easily as different from each other as Clojure is from either. Ruby's insane class monkey patching is closer to the type of advice you find in Common Lisp than the immutable datatypes and carefully conceived concurrency primitives found in Clojure. Common Lisps many different name classes are a horror found in few modern languages. There's nothing in Clojure's "clever special syntax" that many developers did not toy with using reader macros and other abominations. Your suggestion that the olders lisps data structures, usually cobbled together with a pattern of lists and a prayer, are somehow more thought through than Clojures is both ignorance and meanness combined. Yes, Common Lisp had many builtin and library added datatypes. No, it didn't stop alists and structure built from underlying alists from being its fondest love. As for classifying Ruby and Clojure as "scripting" languages, please define "scripting" language. It's a meaningless term for nearly anything other than `bash`.
- dschiptsov 13y agohttp://karma-engineering.com/lab/wiki/Clojure http://karma-engineering.com/lab/wiki/Clojure but, this is only quick review. It is possible, for example, to go through some books, especially "The Joy Of Clojure" which contains 20 line of marketing slogans for 1 line of code, and make explicit commentaries on all the subtle differences, but I'm not going to perform such a tedious task for free.)
- hkolek 13y agoI am familiar with this line of reasoning and I have read the Joy of Clojure. I can't say that I agree though. The article you linked is just opinion and doesn't back up its arguments at all. Afaict, it really boils down to "it's not CL" and "it's not built on cons cells". I agree that the fact that Clojure sits on top of the Java type system is a bit of a mess but it's a language to get shit done and not satisfy some purists. > "The Joy Of Clojure" which contains 20 line of marketing slogans for 1 line of code > but I'm not going to perform such a tedious task for free Well, obviously there's no point in discussing this further and we have to agree to disagree. Have a nice day anyway.
- dschiptsov 13y agoLet's make it simple.) There is classic homework code in two different dialects of Lisp: (define (cross xs ys) (cond ((or (null? xs) (null? ys)) '()) ((atom? xs) (cons (list xs (car ys)) (cross xs (cdr ys)))) (else (append (cross (car xs) ys) (cross (cdr xs) ys))))) (defun cross (xs ys) (cond ((or (null xs) (null ys)) nil) ((atom xs) (cons (list xs (car ys)) (cross xs (cdr ys)))) (t (append (cross (car xs) ys) (cross (cdr xs) ys))))) Could you, please, provide the equivalent code in Clojure?
- kragen 13y agoWell, you could do it this way: (defn cross2 [xs ys] (cond (or (and (sequential? xs) (empty? xs)) (empty? ys)) '() (not (sequential? xs)) (cons (list xs (first ys)) (cross2 xs (rest ys))) true (concat (cross2 (first xs) ys) (cross2 (rest xs) ys)))) which is pretty much exactly homologous, allowing for the detail that you can't ask if an atom is empty? in Clojure, cond (Arc-like) takes alternating conditions and consequents rather than condition-consequent pairs, and the spellings of the list operations no longer refer to IBM 709 machine instructions. Also, it works on any kind of sequences, not just lists, with of course a punishing performance overhead on sequences whose `rest` operation is slow. But I would argue that this interface is poorly designed, since you can say (cross2 '(a b c) '(1 2 3)) or (cross2 'a '(1 2 3)) but not (cross2 '(a b c) '1), and worse, (cross2 '(a (b c) d) '(1 2 3)) implicitly flattens the (b c) into individual items, which is probably a latent bug rather than desired behavior. So I would argue for writing it in this form instead: (defn sc [x ys] ; scalar cross (if (empty? ys) '() (cons (list x (first ys)) (sc x (rest ys))))) (defn cross [xs ys] (if (or (empty? xs) (empty? ys)) '() (concat (sc (first xs) ys) (cross (rest xs) ys)))) which avoids those irregularities and makes the code easier to understand by removing misleading false symmetries. Except really, if this isn't a homework problem, I think you should write it like this in any of these three Lisps: (defn cross [xs ys] (map (fn [x] (map (fn [y] (list x y)) ys)) xs))