vote up 32 vote down star
8

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

39 Answers

1 2 next
vote up 33 vote down check

There has never been a widely accepted lisp environment that:

  • works on multiple platforms,
  • is free or cheap to use, and
  • fully implements the lisp standard.

There are a lot of different lisps out there, and they all have distinct advantages/disadvantages -- most of which are not compatible.

This contributes to the absence of a reliable infrastructure for lisp applications, and other languages have fleshed out in this regard while lisp's community has remained fragmented.

link|flag
1  
GNU CLISP fits all of your bullet points, I think, but I grant you that it does have its weaknesses. Personally, I still think that better C integration is the most painfully missing feature of most implementations including CLISP. – Matthias Benkard Sep 19 '08 at 23:13
1  
IIRC, CLISP has issues with threading and (last I checked) was not as complete of an implementation of lisp as SBCL. That could easily have changed in the intervening years though. It also requires cygwin to run in windows, which is a show-stopper for many people. – rcreswick Sep 20 '08 at 0:50
8  
Surely the diversity of the comments above prove the poster's point? :) – NM Oct 19 '08 at 11:30
show 6 more comments
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
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 -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 29 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
1  
I'm upvoting it for the same reason, and just to be a dork. – __ Oct 27 '08 at 23:50
1  
I'm upvoting this because Jason is too uptight ;-) – dancavallaro Dec 21 '08 at 20:27
1  
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 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 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 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 28 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 8 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
show 1 more comment
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 11 vote down

Look at all the misconceptions in these answers and you'll see the number one reason is that the Lisp community failed to get Lisp proper marketing.

There were many Lisp dialects in the past. The surviving ones are basically 2: Common Lisp and Scheme, each with different strengths.

Scheme is an ongoing minimalist language whose main purposes are to serve as vehicle for research projects and to educate students on fundamental concepts about computations and computability. Many people, thus, get pissed at it for the same reason they get pissed at math or any other educational discipline. Then, they think Scheme/Lisp is a toy without real-world purpose.

CL is the industrial-strength ANSI-standard Lisp, basically a very robust and full "batteries-included" standard language, with many strong free and fast implementations and some quality commercial ones with full-blown IDEs. It's not essentially a functional language, instead being a multiparadigm language, though predominantly favoring imperative programming complete with a very robust Object System (CLOS). It also features the famous macro facility for adapting the language for your needs. Last but not least, the implementations compile to very fast code and the runtime can be dynamically patched with new compiled code on-the-fly, possibly after a careful debugging session while the system still runs. No reinitialization means no time spend stopping the systems.

The parentheses are only a problem when you: 1) give only a superficial look at the language and see what stands out; 2) don't realize they are an incredible programming aid for editors (structured editing at its best, unless you use primitive stuff like notepad); 3) don't understand it is one of the reasons Lisp macros are so powerful (because Lisp code is represented as Lisp data, a list).

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

Lisp is a huge paradigm shift: the syntax is different, you may be encouraged or forced to do functional programming and you go from the edit-compile-test cycle to the interactive modification of a running image.

That huge paradigme shift is one of the things that made me love Lisp, because it opens the mind. But most humans are reluctant to change.

Myths about Lisp probably only are excuses to avoid the change and rationalize.

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

Two words, parentheses hell! (Just kidding).

I think that functional programming languages in general are just hard to learn, and it is a great paradigm shift from imperative and OO programming. I have over 6 years of experience, and I double majored in CIS and Math at a major state university, and I’m just starting to learn about functional programming and its concepts. Maybe it’s me, or maybe it’s where I live and went to school, but I think that it is more of a systemic problem. Remember, this is a community of Einsteins and Elvises in a world of Morts.

But I think that the state of functional languages has also had some responsibility for their lack of adoption. Think about it. What does it mean to be a purely functional language? To not have side effects. Well, we live in a world of applications that, by their very nature, need to have side effects.

I think that languages such as F# might change this. It takes a good amount of logic from OO and imperative languages and builds in key functional concepts. It also is hooked into a rich application framework (.Net), so that its users can have their cake and eat it to. Hopefully, it will no have the adoption problems of functional languages of the past.

On the bright side, I think that evolution of hardware being increasingly multi core is going to force us all to embrace functional programming, whether we like it or not.

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

My only exposure to LISP, as seems to be common based on the other responses here, was a Scheme course in college. It seemed like an interesting toy (unlike the other responses, I absolutely loved it and found it incredibly fun to play with), but, whether by fault of the class or by fault of Scheme itself, there was no evidence presented of it having any real-world use, so I didn't do much with it after that class was done.

link|flag
vote up 5 vote down

Jeff Atwood makes the argument that it's more about the platform than the language:

Language vs. Platform

link|flag
vote up 5 vote down

Because LISP proponents spent 40 years telling everyone how great it was and no time showing everyone how great it was with real world projects.

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

Until now I still can't get asdf-install to work on Clisp. I just manage to solve the website problem by changing from the original http://ww.telent.net/cclan-choose-mirror to http://ftp.linux.org.uk/pub/lisp/cclan. However, some error like ``undefined function ASDF-INSTALL::READ-HEADER-LINE'' popup with a cryptic advice: You may input a value to be used instead of (FDEFINITION 'ASDF-INSTALL::READ-HEADER-LINE). I know asdf-install works with sbcl, but I think all of us has the freedom to choose any Lisp implementation and everything still works, just like anything working on CPython should work on Jython or IronPython. Lisp really has a lot of works to do. I am curious that when SBCL and Clisp are actively maintain, how come Cliki pages are never update even when telent.net has been down extremely long?

link|flag
vote up 13 vote down

Funny how there are millions of coders wanting to program in XML, yet get scared of a few parenthesis. IMO S-expressions are just shorthand for XML :)

link|flag
2  
I've always thought exactly what you said. XML is just an unnecessarily wordy version of S-expression syntax. Plus you have to parse it. S-expressions only need to be read or printed. – Mike Dunlavey Dec 21 '08 at 18:50
1  
And then languages like Ant. I had a coworker extoll to me the virtues of Ant, but deride the parenthesis of Lisp. Hmm... – Aaron Jan 2 at 8:29
show 1 more comment
vote up 1 vote down

Why do you care about whether it is popular or not? To me, popular means it is used by the average people. If you are looking for something good, I think it's better to see what and why the exceptional people are using.

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

Well, call it a coincidence, but I've just started studying LISP about a week ago, in my (little) spare time. If you want some real insight, I can suggest you to look at Paul Graham site. Everything he says is just more interesting than what can I write...

Not a surprise, considering HE is the life-long LISP hacker among the two! :)

I taked a look at his works on LISP and suddenly founded I wanted to know more, and began to study it...

link|flag
vote up 20 vote down

The lack of libraries is the main cause !

We are currently (re)writing fairly large web application in LISP (porting it from java/sql because business logic complexity has grown up to unmanageable proportions).

And we had to reinvent the wheel so many times -- think reverse indexing for full text search, extracting content from XLS/DOC files, SMTP message handling (you might think there are a lot of open libraries available until you start receiving messages from real world -- multiple multipart/mixed international encoding parts in one message sent by Outlook/Outlook Express and such...), decent persistence library is also lacking (apart from proprietary/locked AllegroCache -- all other implementations are immature at best, crappy at least ..), exporting datasets to Excel, handling TCP/IP traffic storm caused by heavy AJAX usage in the UI by 800-2000 simultaneously connected clients (Hunchentoon stalls for several seconds), also try to find a decent date-time library capable of adjusting dates for national holidays and so on and so on.

I'm a team leader and I had to decline continuous requests from team members to switch to Python. Everyone in the team acknowledges and loves LISP syntax, but it is so difficult when you have to (re)write all the libraries needed... I think we are about to switch to Python soon. LISP prototype we created is good and valuable -- it cleaned-up many design issues for us -- but when we speak about applications for the real world - LISP is not ready yet and will not be in the nearest future.

Thank god we have a working Java version to sell to our clients until we experiment with next version of our product - otherwise our small company (only 11 developers) would not be capable of sustaining operation during our LISP experiment.

Many developers think Java is lame and strive for an elegant language with beautiful syntax, but sorry guys - Resin Java2EE Applications Server has rapid response to AJAX connections, popular Java SMTP libraries are capable of handling real-world messages, there is Lucene for full-text search, there is joda-time (with extensions) for date-time handling and so on and so on. With Python it's the same - a lot of proven real world libraries.

LISP is beatiful language but there's no way to write real-world applications in it. And I'm really sorry about that ...

Please excuse me for my bad English - English is not my native language and I already had 3 cups of wine this evening, but nevertheless my message describes a painful first-hand experience.

link|flag
1  
Sounds like you should buy Allegro CL. The mail libraries, for example, are excellent. Sometimes paying for things is worth it. – Rich Oct 2 '08 at 7:03
1  
What do you think about Clojure then? Doesn't it solve the problem with lack of libraries? – kotlinski Jun 10 at 16:11
show 4 more comments
vote up 1 vote down

There has been little mention of the attitude of many lisp programmers to people who aren't keen on lisp. Look at the down votes for anyone whose reasons not to use it aren't acceptable. They're actually good answers to the question (which is why lisp isn't widely used not what's wrong with lisp). And instead of trying to win them over the lisp fans just vote them down.

There is a superior attitude amonst many lisp programmers (including some promonent ones) which is very off-putting. In this case, social reasons matter as much technical ones, if not more so.

link|flag
vote up 4 vote down

Lisp needs love. A new lisp.org to make newcomers find what they look when asking for themselves "what's Lisp?! how can I learn more?! ok, let me try google about lisp... hmm... Lisp is good". Lisp needs a batteries included package, like Python does. More friendly tutorials to explain the "Lisp world" to newcomers. A Perl CPAN like too.

I think Lisp isn't more widely used because of these basic things. Every language today grows with these, Lisp is a 50-years old language, so we need to create these basic things for her.

link|flag
vote up 0 vote down

First of all, you do know that LISP stands for "Lots of Infuriating Silly Parentheses." But I go along with the lack of libraries.

Contrast that with the Java experience. It came out, and right away, libraries starting popping up everywhere. Lisp never snowballed that way. Too bad.

link|flag
vote up 0 vote down

Peter Chistensen compiled a very good list of places where lisp is used.

link|flag
vote up -3 vote down

Programmers either need performance or interoperability. Java, C#, F# and other statically-typed compiled languages provide performance. Ruby, Python, Groovy and other interpreted languages with huge standard libraries provide interoperability. Lisp provides neither.

Cheers, Jon Harrop.

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

Adoption of computer languages is not controlled by how good it is for writing programs.

Lisp is a testbed of many great concepts and ideas. It is a language that has molded people's views about languages. That's an achievement itself so lisp really deserves to be called great.

The lisp syntax itself is not being adopted widely because it's impractical. Lack of variety in the syntax means you use the syntax you have - you end up writing more.

Good macro systems are alleviating this problem, but not solving it. Actually, macros are pretty violent way to solve things and you know violence leads to more violence. More you step out of the syntax you have, more you get burden and more you alleviate it with macros. When you break out from your syntax, you'll get more syntax to break out from.

Lisp could exist without macros, of course. It could be simply well-designed without macros. But adding syntax carefully has been empirically proved being a good choice.

((get routine) a1 a2 a3)
(define '(double x)
  '(* 2 x))

(a1, a2, a3)(routine)get
@{double x}define
  2*x

get(routine)(a1, a2, a3)
define{double x}@
  2*x
#or.. define{double x}{2*x}

You can see that when you are adding small pieces of syntax, trivial things get more trivial. Algebraic notation of functions removes nested parentheses, indentation directly removes parentheses while adding a character to remember. Having different parentheses for quotation is nicer, and so on...

link|flag
vote up 0 vote down

I think one of the issues people have missed is the prejudices people had in the 80's that dynamically-typed languages were never going to be efficient enough for "real world" programming.

Of course that particular misconception persisted well after commercial Lisp implementations were catching up with C (note all the buffer overflow problems causing security headaches are entirely the fault of the same prejudices!!).

In the 90's the emergence of Java just as people were struggling with the complexities and pitfalls of C++ showed that dynamically typed languages are competitive and these strengths led to Java growing very rapidly - its simplicity and crashproofness expedited the rise of course.

So Lisp got left out, but many of its good ideas won over in the "Java revolution" if you can call it that. In the 80's many people believed full garbage collection (as opposed to reference counting) was incompatible with a general purpose language...

Advances in garbage-collection technology throughout the 80's and 90's have more or less destroyed that argument, but the views of many didn't track the technology advances as they weren't aware of them. Generational GC was the big breakthrough, sometime in the 80's.

So basically Java stole a lot of the space that Lisp could (and probably would) have "won big" in as anti-GC and anti-dynamic-type sentiments gradually faded. And Java was free of course - not that there aren't good Lisps available in free versions, its just that Java was free, there was one version and it was a good version.

(Many non-general-purpose dynamic GC'ed languages have flourished of course, but mainly domain-specific and interpreted/scripting ones).

And I'll end on an observation about Lisp-like (dynamic) v. C-like (static) languages. There is a java source-to-bytecode compiler called Jikes, which is written in C++ and is intended as a more-or-less plug-compatible replacement for javac (the Java compiler written in Java). Jikes is fast. Its very fast, perhaps 10 to 20 times faster than javac. Its faster than it needs to be on modern hardware(!), even large projects compile in seconds. There are no versions of Jikes I have used that haven't CRASHED. Every single one has crashed on one large suite of input Java or another... You have to choose the right Jikes version for the project you are on by trial and error. It has got better, it has got worse, but it crashes. Javac doesn't crash. It's purely in Java so once the java runtime has been debugged it can't crash.

I could also mention the P-code saga, but I'll leave that.

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

Having gone from loving Fortran (horrors!) to loving Lisp (bliss!), then to Pascal, C, C++, and so on, I always felt the main problem with Lisp was that you couldn't easily just write an app, compile it into an executable, stick it on a floppy, and run it anywhere.

All the issues of syntax and parentheses are just a matter of getting used to it, and usually you can get things done in a fraction of the code. For instance, if you want to do symbolic differentiation of mathematical expressions, it's almost child's play. At the same time, there's no harm in saying that LISP means "lots of irritating single parentheses".

At the same time, Lisp is really the poorer for missing out on features that started with Pascal, such as strong typing and optional call-by-reference.

I get bothered by those who denigrate the macros. I'm of the school that says the way of the future is domain-specific-languages, and the power of macros is that you can easily build DSLs on top of Lisp.

Not to say it can't be abused. Programmers who are going to make mountains out of molehills can easily do that in Lisp.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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