Or would it be like, tragic, or maybe something else.
And clojure-dev makes it pretty straightforward to use all those parens, but I wish it was more emacs-y in its tabbing.
Just to show how impressed I am, I used vim exclusively for two years, then went out of my way to learn emacs to use clojure. Combine some of the most helpful emacs features with the clojure-dev plugin for Eclipse and this thing will take off, IMHO.
I never had a problem with SBCL (I didn't try others).
And about the supposed "fracturation" of implementations, first it's not a problem if you use only standardized features, second a lot of features (threads, sockets, etc) that aren't standardized are still well-supported in implementations and there are libraries that hide the minor incompatibilities between implementations.
Want threads? cl-thread. Want sockets? bordeaux-threads. Want access to the Meta-Object Protocol? cl-mop. Want generalized streams? gray-streams.
I believe the perceived problems are really blown out of proportion. Maybe CL implementations were crappy in 1995 but things change and sometimes you have to revise your assumptions.
I'm just saying that if people are having a love fest on Clojure, maybe the reason Lisp never got adopted had more to do with the implementations available than the language itself.
It's sad they go away without even realizing that using a real editor like Emacs makes the paren problem non-existent.
Could you imagine if someone went into a C++ forum and complained about all the semicolons and brackets? They'd get laughed right out of their Usenet client. Instead, people try to make it OK that people don't like parens, by constantly bringing up the parens in hushed voices like they are some sort of evil force out to steal our first-born children.
It's bizarre, especially in light of the fact that people don't seem to have any problems with any other sigils.
I couldn't agree with this more. I've spent the last 6 months or so learning Clojure just for the sake of it. I definitely think I'm a better programmer because of it, regardless of whether the language itself is actually "real world" useful.
I'm also curious to know if that's because of Clojure itself, or because it is the first Lisp you learned.
I've been working my way through PAIP (using Clojure instead of Lisp) and that's given me a good sense of Lisp style (I hope). I've found that just the act of typing in the code and converting it over to Clojure has helped me grok some of the functional programming concepts I was struggling with (slightly reminiscent of typing in classic arcade games on my ZX Spectrum!).
Clojure has been my catalyst to understanding Lisp-like concepts, and if I had to give one reason for that it would be just having access to all the Java libraries.
I really appreciate Clojure's concurrency / STM mechanisms. I think they're very well thought out and pretty straightforward to use. Additionally, the ability to use libraries from the Java ecosystem is really, really, really nice.
Common Lisp has some really nice things as well (for the purposes of this post, I'm referring to SBCL). I have a very deep appreciation for the flexibility of CL - being multi-paradigm is one of its charms, and it feels like the most flexible language I've ever used. When I first started messing around with CLOS, I immediately hated every other object system. Cells is pretty awesome too, although I hear it's being ported to Clojure right now.
I also really like that all the libraries are also written in Common Lisp; although it may just be my preference for "turtles all the way down".
Clojure wins from a deployment perspective; CL wins from a tooling perspective.
I would say there is a definite trade-off between the two, but as it stands today, they are both very solid choices.