Why isn't LISP more widely used? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T23:59:27Z http://stackoverflow.com/feeds/question/106221 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used 34 Why isn't LISP more widely used? Chris 2008-09-19T22:45:47Z 2009-12-09T13:17:01Z <p>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)?</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106235#106235 -3 Answer by bmdhacks for Why isn't LISP more widely used? bmdhacks 2008-09-19T22:48:19Z 2008-09-19T22:48:19Z <p>Most functional programming languages are very hard to learn, which prevents their widespread adoption. It's as simple as that.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106242#106242 4 Answer by Guy for Why isn't LISP more widely used? Guy 2008-09-19T22:49:38Z 2008-09-19T22:49:38Z <p>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.</p> <p>Remember that LISP stands for List Processing and LINQ (in C#) gives you amazingly concise power over collections.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106247#106247 -1 Answer by Cody Brocious for Why isn't LISP more widely used? Cody Brocious 2008-09-19T22:50:16Z 2008-09-19T22:57:31Z <p>There are a few reasons I see:</p> <ul> <li>It's difficult to pick up</li> <li>The benefits to most projects are marginal</li> <li>It's drastically different than everything else</li> <li>(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 <a href="http://www.paulgraham.com/pypar.html" rel="nofollow">be the best idea</a>.</li> </ul> <p>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.</p> <p>(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.)</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106273#106273 33 Answer by Mike Stone for Why isn't LISP more widely used? Mike Stone 2008-09-19T23:00:33Z 2008-09-19T23:00:33Z <p>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).</p> <p>EDIT: Also, I couldn't help but think of this XKCD: <a href="http://xkcd.com/297/" rel="nofollow"><img src="http://imgs.xkcd.com/comics/lisp_cycles.png" alt="I've just received word that the Emperor has dissolved the MIT computer science program permamently." /></a></p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106274#106274 0 Answer by Ryan Guest for Why isn't LISP more widely used? Ryan Guest 2008-09-19T23:00:38Z 2008-09-19T23:00:38Z <p>Not the top reason, but I think the lack of 3rd party libraries is also worth a mention.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106278#106278 4 Answer by Pat for Why isn't LISP more widely used? Pat 2008-09-19T23:01:53Z 2008-09-19T23:01:53Z <p>@<a href="#106242" rel="nofollow">Guy</a> , @<a href="#106247" rel="nofollow">Cody Brocious</a> I guess it is true then</p> <blockquote> <p>Whoever does not understand LISP, is doomed to reinvent it. ;-)</p> </blockquote> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106289#106289 33 Answer by rcreswick for Why isn't LISP more widely used? rcreswick 2008-09-19T23:04:35Z 2008-09-19T23:04:35Z <p>There has never been a widely accepted lisp environment that:</p> <ul> <li>works on multiple platforms, </li> <li>is free or cheap to use, and </li> <li>fully implements the lisp standard.</li> </ul> <p>There are a lot of different lisps out there, and they all have distinct advantages/disadvantages -- most of which are not compatible. </p> <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106293#106293 7 Answer by kurious for Why isn't LISP more widely used? kurious 2008-09-19T23:05:02Z 2008-09-19T23:05:02Z <p>It's not just LISP, but functional languages in general (ML, Scheme, etc.). The fundamental reasons I see:</p> <ul> <li>Large paradigm shift -- thinking in terms of functions, not data</li> <li>"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.</li> </ul> <p>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.</p> <p>Some of the ideas from functional languages are very applicable to the real world, but I think they're seen as disconnected.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106312#106312 30 Answer by Matthias Benkard for Why isn't LISP more widely used? Matthias Benkard 2008-09-19T23:10:24Z 2008-09-19T23:10:24Z <ol> <li>Popular, self-perpetuating misconceptions. (Just look at the posts here. (a) I <em>never</em> <em>ever</em> keep track of parentheses when programming in Lisp! My editor does that for me. (b) Scheme may be a functional language, but I <a href="http://www.lispworks.com/documentation/HyperSpec/Body/m_loop.htm" rel="nofollow">LOOP</a> happily all day long in Common Lisp, thank you very much.)</li> <li>Lack of a definitive standard implementation with lots of “Batteries Included.”</li> <li>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.)</li> <li>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).</li> <li>Lack of various libraries (the situation is changing for the better right as we're wasting time here, though).</li> <li>Lack of clear guidance for newbies. <a href="http://gigamonkeys.com/book/" rel="nofollow">Practical Common Lisp</a> 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.</li> </ol> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106314#106314 9 Answer by Bill K for Why isn't LISP more widely used? Bill K 2008-09-19T23:11:22Z 2008-09-19T23:11:22Z <p>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).</p> <p>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.</p> <p>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.</p> <p>This is the main reason I can't seem to accept Lisp--and I've tried more than once.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106332#106332 1 Answer by bentilly for Why isn't LISP more widely used? bentilly 2008-09-19T23:16:26Z 2008-09-19T23:16:26Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106981#106981 11 Answer by namekuseijin for Why isn't LISP more widely used? namekuseijin 2008-09-20T03:33:53Z 2008-09-20T03:33:53Z <p>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.</p> <p>There were many Lisp dialects in the past. The surviving ones are basically 2: Common Lisp and Scheme, each with different strengths.</p> <p>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.</p> <p>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.</p> <p>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).</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/118801#118801 5 Answer by Nowhere man for Why isn't LISP more widely used? Nowhere man 2008-09-23T02:31:39Z 2008-09-23T02:31:39Z <p>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.</p> <p>That huge paradigme shift is one of the things that made me love Lisp, because it opens the mind. <em>But most humans are reluctant to change</em>.</p> <p>Myths about Lisp probably only are excuses to avoid the change and rationalize.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/118845#118845 0 Answer by Charles Graham for Why isn't LISP more widely used? Charles Graham 2008-09-23T02:53:28Z 2008-09-23T03:11:05Z <p>Two words, <em>parentheses hell</em>! (Just kidding).</p> <p>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 <a href="http://www.codinghorror.com/blog/archives/001004.html" rel="nofollow">Einsteins and Elvises in a world of Morts</a>.</p> <p>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 <em>purely</em> 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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/118862#118862 2 Answer by Dave Sherohman for Why isn't LISP more widely used? Dave Sherohman 2008-09-23T02:59:54Z 2008-09-23T02:59:54Z <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/118900#118900 5 Answer by Jason Baker for Why isn't LISP more widely used? Jason Baker 2008-09-23T03:11:07Z 2008-09-23T03:11:07Z <p>Jeff Atwood makes the argument that it's more about the platform than the language:</p> <p><a href="http://www.codinghorror.com/blog/archives/000839.html" rel="nofollow">Language vs. Platform</a></p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/118912#118912 5 Answer by maud-dib for Why isn't LISP more widely used? maud-dib 2008-09-23T03:18:00Z 2008-09-23T03:18:00Z <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/120562#120562 1 Answer by liaohaohui for Why isn't LISP more widely used? liaohaohui 2008-09-23T12:05:48Z 2008-09-23T12:05:48Z <p>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 <a href="http://ww.telent.net/cclan-choose-mirror" rel="nofollow">http://ww.telent.net/cclan-choose-mirror</a> to <a href="http://ftp.linux.org.uk/pub/lisp/cclan" rel="nofollow">http://ftp.linux.org.uk/pub/lisp/cclan</a>. 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?</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/120590#120590 15 Answer by leppie for Why isn't LISP more widely used? leppie 2008-09-23T12:14:57Z 2008-09-23T12:14:57Z <p>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 :)</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/125945#125945 1 Answer by Levente Mészáros for Why isn't LISP more widely used? Levente Mészáros 2008-09-24T08:02:31Z 2008-09-24T08:02:31Z <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/126023#126023 0 Answer by Myrrdyn for Why isn't LISP more widely used? Myrrdyn 2008-09-24T08:25:59Z 2008-09-24T08:25:59Z <p>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 <a href="http://www.paulgraham.com/" rel="nofollow">Paul Graham</a> site. Everything he says is just more interesting than what can I write...</p> <p>Not a surprise, considering HE is the life-long LISP hacker among the two! :)</p> <p>I taked a look at his works on LISP and suddenly founded I wanted to know more, and began to study it...</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/142168#142168 21 Answer by Nick Arconi for Why isn't LISP more widely used? Nick Arconi 2008-09-26T21:43:04Z 2008-09-26T22:56:53Z <p>The lack of libraries is the main cause !</p> <p>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).</p> <p>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.</p> <p>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.</p> <p>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. </p> <p>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. </p> <p>LISP is beatiful language but there's no way to write real-world applications in it. And I'm really sorry about that ...</p> <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/146825#146825 1 Answer by Daniel James for Why isn't LISP more widely used? Daniel James 2008-09-28T21:47:31Z 2008-09-28T21:47:31Z <p>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 <strong>not</strong> what's wrong with lisp). And instead of trying to win them over the lisp fans just vote them down.</p> <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/149797#149797 4 Answer by badlambda for Why isn't LISP more widely used? badlambda 2008-09-29T17:38:19Z 2008-09-29T17:38:19Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/160984#160984 0 Answer by mea for Why isn't LISP more widely used? mea 2008-10-02T05:23:24Z 2008-10-02T05:23:24Z <p>First of all, you do know that LISP stands for "Lots of Infuriating Silly Parentheses." But I go along with the lack of libraries.</p> <p>Contrast that with the Java experience. It came out, and right away, libraries starting popping up everywhere. Lisp never snowballed that way. Too bad.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/173761#173761 0 Answer by pookleblinky for Why isn't LISP more widely used? pookleblinky 2008-10-06T10:02:07Z 2008-10-06T10:02:07Z <p><a href="http://www.pchristensen.com/blog/lisp-companies/" rel="nofollow">Peter Chistensen</a> compiled a very good list of places where lisp <i>is</i> used.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/216240#216240 -3 Answer by Jon Harrop for Why isn't LISP more widely used? Jon Harrop 2008-10-19T10:10:50Z 2008-10-19T10:10:50Z <p>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.</p> <p>Cheers, Jon Harrop.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/216292#216292 1 Answer by Cheery for Why isn't LISP more widely used? Cheery 2008-10-19T11:17:47Z 2008-10-19T11:17:47Z <p>Adoption of computer languages is not controlled by how good it is for writing programs.</p> <p>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.</p> <p>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.</p> <p>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.</p> <p>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.</p> <pre><code>((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} </code></pre> <p>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...</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/344543#344543 0 Answer by Mark Tillotson for Why isn't LISP more widely used? Mark Tillotson 2008-12-05T17:09:28Z 2008-12-05T17:09:28Z <p>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.</p> <p>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 <em>entirely</em> the fault of the same prejudices!!).</p> <p>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.</p> <p>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 <em>incompatible</em> with a general purpose language... </p> <p>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.</p> <p>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.</p> <p>(Many non-general-purpose dynamic GC'ed languages have flourished of course, but mainly domain-specific and interpreted/scripting ones).</p> <p>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.</p> <p>I could also mention the P-code saga, but I'll leave that.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/384810#384810 1 Answer by Mike Dunlavey for Why isn't LISP more widely used? Mike Dunlavey 2008-12-21T19:07:40Z 2008-12-21T20:18:09Z <p>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.</p> <p>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".</p> <p>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.</p> <p>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.</p> <p>Not to say it can't be abused. Programmers who are going to make mountains out of molehills can easily do that in Lisp.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/402039#402039 1 Answer by Aaron for Why isn't LISP more widely used? Aaron 2008-12-31T01:30:56Z 2008-12-31T20:35:13Z <p>There's a lot of accurate information and true-myths here.</p> <p><strong>"Lisp = Lots of irritating superfluous parenthesis"</strong></p> <p>Myth. Yes, you'll see "<code>))))))</code>" quite frequently. But in C++ you have <code>;\n}\n;\n}\n;\n}</code>. It's a joke, but not the real problem.</p> <p><strong>Yes, Lisp is interesting, but learning X will be too hard</strong> -- For X in { functional-programming, recursion, macro-programming, lambda-expressions, ... }</p> <p>Very Real, at least in perception. Lisp has a nice (enough) imperative programming language living in it too, but too often this gets downplayed. Yes, Lisp is cool. But it can also be boring when you need it to be, such as when rehabilitating from an imperative-OO-only language:</p> <pre><code>(defun (factorial x) "calculate factorial the *boring* way" (let ((accum 1)) (loop for current-factor in 1 to x (setf accum (* current-factor accum))) (return accum))) </code></pre> <p>Functional programming adherents -- let us collectively cringe at this code once, get it out of the way. Then give it to our C++/Perl/Java/C# colleague, and say "look, this will ease you through the transition". Give them <code>Defun</code>, <code>Let</code>, <code>Setf</code>, <code>Read</code>, and a couple of <code>Loop</code> and <code>Format</code> examples, just to get started with. </p> <p>And <em>then</em> tantalize them with some wickedly cool code. That way they'll have tools, confidence, and inspiration.</p> <p><strong>Where are the standardized libraries?</strong></p> <p>Fact, but becoming Myth. Convincing the C++ programmers may be easier here -- Until -1 to -2 years ago, the C++ standard didn't even have hash tables. But what about sockets? Xml (<em>shudder</em>) parsing? Web services? It's been a while since C++ developers were cut off from good libraries, and C#/Java developers had standard distributed everything by the time they had the syntax down. </p> <p>At least, that's basically what I see right now.</p> <p>Aside: My path to Lisp: VB -> C -> C# -> C++ -> Python -> Common Lisp, with that last step being last month. I'm fairly green, but I think that gives me more </p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/483219#483219 2 Answer by Amders for Why isn't LISP more widely used? Amders 2009-01-27T12:27:23Z 2009-01-27T12:27:23Z <p>My biggest issue was that i want to have GUI builtin, easy to run and maintaine without have to add a lot of stuff extra package.</p> <p>I found that "Clojure" that solve all my problem learning LISP´, is a dialekt that runs in a java vm, witch mean portability, and access to Swing GUI library, woth looking att. <a href="http://clojure.org" rel="nofollow">http://clojure.org</a></p> <p>And if you are not and Emacs fan, there is a plugin for Eclipse, still under development but it makes Lisp development more.... year 2009 style.</p> <p>Anders</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/483258#483258 2 Answer by Simon Howard for Why isn't LISP more widely used? Simon Howard 2009-01-27T12:41:14Z 2009-01-27T12:41:14Z <p>I think there are a number of reasons, including the syntax, the fact that it's difficult to learn, and that it is less efficient (or it's at least more difficult to write a compiler that generates efficient code) than other languages like C/C++.</p> <p>I think one of the biggest issues, though, is the fact that there has never been, to my knowledge, a popular implementation promoted by a large company. When Sun released Java, for example, they did a lot of marketing for it. Similarly Microsoft made a huge marketing effort for C# and .NET. Even back in the DOS days, Microsoft put out QuickC, QuickBASIC and even QuickFortran. There was never "QuickLISP", and there has never been a "Microsoft Visual LISP" either.</p> <p>These things don't affect the technical suitability of a language but they do affect how it's perceived, and that can have just as much, if not more, influence. It's like the old adage, "nobody ever got fired for buying IBM" - nobody ever got fired for using Microsoft's C++ compiler.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/483338#483338 0 Answer by Carlos Eduardo Olivieri for Why isn't LISP more widely used? Carlos Eduardo Olivieri 2009-01-27T13:10:41Z 2009-01-27T13:10:41Z <p>For me the main cause is: the language is not intuitive. It is confuse.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/485919#485919 1 Answer by John McAleely for Why isn't LISP more widely used? John McAleely 2009-01-28T00:08:19Z 2009-01-28T00:08:19Z <p>Having just spent 6 months (part time) deploying a lisp web server, I would say the main downside when compared to other languages is the lack of a standardised way of talking to foreign code.</p> <p>So when someone wants to re-use a well written library in another language (OpenSSL perhaps), there is no way for them to do so without using implementation specific hacks.</p> <p>Some of those hacks are very clever, so developing code to talk to C is easy. Getting it to live long, and be re-used by other lispers, is hard.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/839130#839130 0 Answer by splittist for Why isn't LISP more widely used? splittist 2009-05-08T10:04:22Z 2009-05-08T10:04:22Z <p>Nobody knows why one language is popular and another languishes. <a href="http://en.wikipedia.org/wiki/Adventures%5Fin%5Fthe%5FScreen%5FTrade#.22Nobody%5FKnows%5FAnything.22" rel="nofollow">Nobody knows</a> why one film will become popular and another will bomb. That's because popularity depends on the decisions of a multitude of complex human beings who don't even (fully) know their own motivations.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/839263#839263 1 Answer by TrayMan for Why isn't LISP more widely used? TrayMan 2009-05-08T10:44:41Z 2009-05-08T10:44:41Z <p>Many dismiss the parentheses issue as a joke and bringing it up leads often to flame wars, but I propose that it is actually a significant factor. Many people are simply put off by the syntax and it doesn't help much to point out that there are text editors that help you balance the parentheses. (Balancing curlies in C manually is quite easy in comparison.)</p> <p>It may be that for some people, reading LISP is simply more difficult than for others for reasons best explained by cognitive psychology and it isn't a matter of the amount of exposure. Until someone actually tests this hypothesis, we won't know for sure.</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/960756#960756 0 Answer by dat for Why isn't LISP more widely used? dat 2009-06-06T23:01:45Z 2009-06-06T23:01:45Z <p>Many of the above answers allude to libraries as a source of friction when using lisp. I'm surprised that none have explicitly pointed out that, perhaps more than availability of libraries per se (Common Lisp has quite a number of high-quality libraries...), the issue of library management is itself a significant issue with Common Lisp. Some libraries are available via ASDF-Install, some libraries aren't... ASDF-Install lives in a "tar.gz"-only world and current versions of some libraries are available only via a darcs interface while current versions of other libraries are available only via a git interface, etc.</p> <p>To top it off, when interlibrary dependencies include version issues, things can turn into a royal first-class hassle since many ASDF libraries don't even bother advertising version information (using :version in the defsystem form).</p> <p>In short, nothing remotely close to the convenience of a rpm or dpkg-type system (with the ability to deal with interlibrary version dependency issues -- and with access to current versions of the majority of libraries of interest) is widely used with CL. </p> <p>The efforts invested in cl-librarian, mudballs, and clbuild are worth considering...</p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/960777#960777 0 Answer by hyperlogic for Why isn't LISP more widely used? hyperlogic 2009-06-06T23:14:30Z 2009-06-06T23:14:30Z <p>Two Words : <a href="http://en.wikipedia.org/wiki/AI%5FWinter" rel="nofollow">AI Winter</a></p> http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/1873816#1873816 0 Answer by Desty for Why isn't LISP more widely used? Desty 2009-12-09T13:17:01Z 2009-12-09T13:17:01Z <p>Scheme is becoming more popular these days (although, pretty much every programming language is), but suffers somewhat from varying consistency between implementations (i.e. popular implementation-specific API in Gambit, Chicken etc), and suffers greatly from a lack of built-in/easily-installed libraries for common tasks. I remember struggling to replace matching characters in a string and having to google the SRFIs (semi-standard Scheme extensions which might be implemented in your Scheme), and despairing at how comparatively easy and obvious it is in, say, Python. Similarly if you want to write a GUI program, some extra work is involved might drive away newbies.</p> <p>Also, IDE support is a bit patchy. Everything is done in Emacs, which some Lisp fanatics will claim is a good thing (and if you get familiar with Emacs, you probably will enjoy its features), but things like identifier completion and the kind of refactoring/utility support you get when programming Java in Eclipse is sorely missed. OTOH, PLT Scheme's DrScheme is a very promising IDE with a friendly interface, but it has its own limitations (for one, it seems a bit heavyweight).</p> <p>Common Lisp addresses the library issues to a degree, but there are some headaches (such as asdf-install), and it can be a bit overwhelming.</p>