vote up 34 vote down star
10

I've heard a lot of people espouse the capabilities of LISP and its omnipotent macros. If LISP is such a great language, why isn't it being adopted more? What problems is LISP facing that is holding it back from (re)emerging as popular language? Is it something about LISP itself ("those brackets!" isn't the answer, is it?!), or its competitors (e.g. the dominance of Java, .NET)?

flag

40 Answers

prev 1 2
vote up 1 vote down

My theory is that our brains are set up to be able to naturally process a certain amount of information in syntax. So in reading languages with syntax the "syntax recognition" piece of their brain grabs some of the information, leaving less for the "content analysis" piece to have to process. By contrast with the various Lisp languages there is almost no syntax recognition (other than pairing parens, which information we mostly duplicate with indentation) which puts all of the work on our ability to analyze content.

Of course the trade-off is that by having things that would be done in syntax in other languages not be special in Lisp is that you can manipulate them in macros very effectively. But most users aren't using their language on that level, and so don't notice how much power they are giving up.

link|flag
show 2 more comments
vote up 9 vote down

I've come to believe that the primary reason to use any given language is "How hard is it for the next guy to read". (This is assuming your language produces a reliable program consistently).

The smarter the language is, the more difficult it can be to unravel the last guys great code tricks. Concepts like OO are completely unnecessary from the point of view of someone trying to communicate with a computer, but very helpful in organizing your design and communicating it to others.

Maybe I've just been looking at c-style code too long, but I find polish notation mostly unnatural--cool but tough to grasp what a large block is doing at a glance.

This is the main reason I can't seem to accept Lisp--and I've tried more than once.

link|flag
1  
I've tried as well -- I found a great tutorial here: defmacro.org/ramblings/lisp.html That explains Lisp in terms of real-world problems (XML configuration) . I'm still getting my head around it, but found it an excellent read. – kurious Sep 26 '08 at 22:27
vote up 30 vote down
  1. Popular, self-perpetuating misconceptions. (Just look at the posts here. (a) I never ever keep track of parentheses when programming in Lisp! My editor does that for me. (b) Scheme may be a functional language, but I LOOP happily all day long in Common Lisp, thank you very much.)
  2. Lack of a definitive standard implementation with lots of “Batteries Included.”
  3. Potential newbies' previous exposure to Scheme in a programming languages course, having hated it, and not looking into other Lisp dialects because they superficially look like Scheme. (This is related to #1.)
  4. Lack of a well-supported implementation that works the way a C programmer expects (i.e. using a traditional edit-compile-link-run cycle and being able to seamlessly link C and Lisp code).
  5. Lack of various libraries (the situation is changing for the better right as we're wasting time here, though).
  6. Lack of clear guidance for newbies. Practical Common Lisp does a very nice job providing a Lisp tutorial/textbook, but it still doesn't seem to be visible enough. There is still no real community portal on the web, either.
link|flag
show 5 more comments
vote up 7 vote down

It's not just LISP, but functional languages in general (ML, Scheme, etc.). The fundamental reasons I see:

  • Large paradigm shift -- thinking in terms of functions, not data
  • "Academic" -- it's taught in schools, but most kids tinkering around with VB/HTML/JavaScript won't encounter it. I was pretty interested in computers growing up, but never heard of LISP until I got to college.

However, there are certain "ideals" from functional languages that do make their way into programs. UNIX shell scripting involves linking commands ("functions") together, like "cat foo.txt | sort | uniq -c" which is a functional way of handling it. You define methods and let the data pass through, not even declaring a single variable.

Some of the ideas from functional languages are very applicable to the real world, but I think they're seen as disconnected.

link|flag
show 1 more comment
vote up 4 vote down

@Guy , @Cody Brocious I guess it is true then

Whoever does not understand LISP, is doomed to reinvent it. ;-)

link|flag
show 2 more comments
vote up 0 vote down

Not the top reason, but I think the lack of 3rd party libraries is also worth a mention.

link|flag
show 3 more comments
vote up 34 vote down

I have heard that recursion is hard to grasp for some programmers, so this may be a factor since recursion is so critical in the language. I personally find recursion not very hard, but I have seen a lot of programmers struggle with it (more the 9-5 type programmers that look puzzled when you mention fibonacci, or scowl when you try to talk programming during lunch... but these are also probably a reasonably large subset of programmers).

EDIT: Also, I couldn't help but think of this XKCD: I've just received word that the Emperor has dissolved the MIT computer science program permamently.

link|flag
2  
I'm upvoting it for the same reason, and just to be a dork. – __ Oct 27 '08 at 23:50
3  
I'm upvoting this because Jason is too uptight ;-) – dancavallaro Dec 21 '08 at 20:27
3  
That might be true in Scheme (due to its tail-call optimization requirement), but no other Lisp dialects I know of. I use recursion in Common Lisp no more than in any other language. – Ken Mar 1 at 6:47
4  
Recursion is an elementary building block in computing. I wouldn't call a person who doesn't understand it a programmer at all. – TrayMan May 8 at 10:15
show 4 more comments
vote up -1 vote down

There are a few reasons I see:

  • It's difficult to pick up
  • The benefits to most projects are marginal
  • It's drastically different than everything else
  • (Edit) Perhaps most importantly, it's not well used -- it's a chicken-and-egg situation, but companies are usually wary of using a language that isn't well used. Although this may not be the best idea.

That said, a lot of languages are becoming more like Lisp. Python and Ruby have a lot of Lisp's ideals implemented, although the metaprogramming isn't all there yet. And if you look at Nemerle, it's effectively C# + OCaml + Lisp -- wonderous thing.

(To be more clear on Nemerle, it's largely C# syntax with OCaml's variants/matching (also similar to Haskell's matching) and with Lisp's macros -- real macros. In addition, you have real recursion, functions as first-class values, tuples, etc.)

link|flag
show 4 more comments
vote up 4 vote down

When I first saw LINQ I said to myself "this is LISP for C#." So to answer your question, I think that other languages have been incorporating the best parts of LISP into themselves which makes them more competitive against something like LISP and thereby reduces the come back potential of LISP.

Remember that LISP stands for List Processing and LINQ (in C#) gives you amazingly concise power over collections.

link|flag
vote up -3 vote down

Most functional programming languages are very hard to learn, which prevents their widespread adoption. It's as simple as that.

link|flag
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.