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)?
|
|
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. |
|||
|
|
|
|||
|
|
It's not just LISP, but functional languages in general (ML, Scheme, etc.). The fundamental reasons I see:
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. |
|||
|
|
@Guy , @Cody Brocious I guess it is true then
|
|||
|
|
Not the top reason, but I think the lack of 3rd party libraries is also worth a mention. |
|||
|
|
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). |
||||||||||||||||
|
|
|
There are a few reasons I see:
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.) |
|||
|
|
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. |
|||
|
|
|
|
Most functional programming languages are very hard to learn, which prevents their widespread adoption. It's as simple as that. |
|||

