vote up 6 vote down star
2

A simple Googlin' will reveal that the search term 'practical lisp' returns a link for Practical Common LISP, which is a very nice starter book. However, this is not what I was looking for or had in mind when I set out to search those terms.

I am well versed in the applications of LISP and functional programming with regards to artificial intelligence, as well as academic comparative programming examples. All of the academic theory is fine and dandy and I certainly appreciate it, but I'm looking for some real-world non-AI examples of practical LISP implementation.

As an example, development using LISP in the workplace, in a piece of production code. I know that OOP is generally canon in group software development and I can understand why, but let's put aside our feelings on that and try and find some practical examples of LISP in action, perhaps other than web applications as those are what I've found so far.

I'm not using this to prove or disprove the adequacy of the language, I am genuinely curious about what is out there. Fanboys may retire from the stage at this point.

There is a good question about beginning to learn functional programming over here, but it isn't language specific. If you're like me and interested in functional programming, check it out. You might have ended up here wondering about LISP, after all.

flag
given the question Lisp in the real world, should this one be closed as an exact duplicate? – Norman Ramsey Jan 2 at 23:15

21 Answers

vote up 10 vote down

EMACS is written in LISP ;-)

link|flag
1  
a very old lisp dialect that is :) – Anders Rune Jensen Jan 2 at 13:43
1  
And not all of it -- there is still a "core" that is written in C, unfortunately. – ShreevatsaR Jan 2 at 15:21
Since Lisp is interpreted, it must have a core written in something. Why not C? – Whaledawg Jan 4 at 19:48
2  
Lisp isn't interpreted in general. – Matthias Benkard Jan 8 at 22:18
4  
why do people think that C is so special that it's needed for everything? it's just a relatively less annoying assembler, and it's certainly possible to write an assembler in lisp, as it was demonstrated several times... – Attila Lendvai Jan 21 at 17:03
vote up 9 vote down

See the question “Lisp in the real world”.

link|flag
vote up 5 vote down

Paul Graham formed a startup company called ViaWeb in the 90's to allow users to create online webshops without any programming experience. This company was then bought out by Yahoo! to create Yahoo! Stores. Paul attributed the companys success to LISP. See his essay, Beating the Averages.

He is also the creator of a LISP dialect, arc. Arc is the implementation language for the popular website Hacker News

link|flag
1  
It should be mentioned that Yahoo rewrote the code to C++ and Perl. – olavk Jan 2 at 18:21
I answered this as well, but deleted it after I noticed she mentioned "other than web applications" specifically. – Max Jan 2 at 23:45
1  
Yeah, I'll bet Yahoo regretted it. – Joshua Jan 4 at 20:09
vote up 4 vote down

Some highlights:

NASA http://www.flownet.com/gat/jpl-lisp.html

Crash Bandicoot & Jak+Daxter http://www.gamasutra.com/features/20020710/white_02.htm

Interface Builder OS X (which was later rewritten in Objective-C)

Emacs

All of the above are projects of great complexity. In the case of Interface Builder and Emacs one could reasonably argue that they have not been surpassed. Of course Interface Builder has not been written in Lisp in over two decades, but I think this list also points out that a powerful language like Lisp inspires hackers to attempt projects you normally wouldn't even consider in a less expressive language.

link|flag
Why was Interface Builder rewritten in Objective-C, then? – olavk Jan 2 at 18:18
1  
I would guess it's because everything else at Apple is done in Objective-C and it made sense to keep things together. Also, they threw away a ton of stuff to do OS X, so maybe it needed a rewrite anyway. – Andrew Gwozdziewycz Jan 2 at 18:41
vote up 4 vote down

I am confused as to why you think Lisp and OOP are mutually exclusive. CLOS is the object system that all the other languages tried (and failed) to copy.

But anyway, I use CL for a few general-purpose web applications in production at work. One is a utility for uploading a file an emailing it to certain people; the other collects log data from other applications and lets me search through it. Both are heavily object oriented (and use elephant for persistence).

Using Lisp is not that different from using any other programming language, really. It has great tools (SLIME), and some really nice libraries (I love closure-xml with cxml-stp).

Finally, I will add one more "commercial" non-web app to the pile:

http://maxima.sourceforge.net/

It is a Computer Algebra System, somewhat like Mathematica.

link|flag
vote up 4 vote down

ITA Software Uses Lisp technology to help set Orbitz apart from other travel Sites

http://www.franz.com/success/customer_apps/data_mining/itastory.php3

link|flag
vote up 4 vote down

PrimeTrader a cross platform stock trading application from NetFonds. They also use Common Lisp in their back-end trading systems.

link|flag
vote up 3 vote down

While your question was about Lisp, you can find out more from the Commercial Users of Functional Programming. Also see [Haskell in Industry][2]

In financial services, functional programming seems to be the right tool for quantitative finance

  • Jane Street uses OCaml
  • Credit Suisse
  • Deutsche Bank
link|flag
vote up 3 vote down

You're probably not going to get many useful answers, not because Lisp isn't widely used, but because nobody wants to reveal that they used Lisp, because:

  • Lisp is their secret sauce, and they don't want their competitors to know about it
  • Lisp programmers want to show off their app on its own merits, not because of the language used
  • Non-Lispers recognize only that it's not a buzzword, and hence have no urge to mention it
  • It's easy to hide it: web apps are really popular these days, and Lisp is great at web apps, but since it's all running on the server through a language-agnostic protocol, there's no way for users to tell that it's Lisp
  • More generally, companies want to keep their cards close to their chest (independent of Lisp or even programming languages)

I know that part of every Amazon.com product page is generated using a Lisp service, but only because I had a beer with the guy who wrote and deployed it.

I wrote a web service that everybody who's seen loves, but mostly because it looks more impressive than it is. In fact, it happens to map onto Common Lisp constructs and free Lisp libraries almost perfectly, and is actually a fairly short program. If you take the curtain off something, everybody says "oh, is that all? I could have done that".

link|flag
vote up 2 vote down

DERIVE has been implemented in LISP back in 1988. It's still the math-program of choice for me. To bad TI has discontinued it a year ago or so.

http://en.wikipedia.org/wiki/Derive_(computer_algebra_system)

link|flag
vote up 2 vote down

You can find lists of programs written in LISP here and here. You could also do a search on sourceforge.

link|flag
vote up 2 vote down

First of, I believe you should phrase your question as "what are some practical examples of non-web-based programs implemented in Lisp"? To a Lisper, asking about "Lisp implementations" means "implementations of Lisp compilers or interpreters", such as Lispworks (commercial) or CMUCL (open source).

I think these might be some of the examples you're looking for:

Basically I'm cherry-picking packages from searching Debian for packages that contain cl-". Many are libraries, but some are full applications. Take a look.

link|flag
vote up 2 vote down

One example of where Lisp is widely used and useful is in the form of AutoLISP or Visual LISP that are used to program AutoCAD and its verticals.

link|flag
vote up 2 vote down

Strange that nobody mentioned LispMaschines. A complete operating system with word processing, hyperreffed documents, gui programs, databases and even C compilers. So this stuff was very real and some say it was the best they ever get their hands on. I do not kow the current state of OpenGenera (an port to the DEC Alpha Stations) but this thing was bought by me 5 or so years ago to see how one might implement an Operating System. I realla wished they would have ported the stuff to x_64, but I guess this will not happen anymore....

But maybe time has passed it by....

Regards Friedrich

link|flag
vote up 1 vote down

Script-Fu under Gimp is also LISP (the Scheme dialect).

link|flag
vote up 1 vote down

CoCreate Modeling is a large commercial 3D CAD application, and a large part of its code is written in (a subset of) Common Lisp. See http://www.clausbrod.de/Blog/DefinePrivatePublic20071229 for some more details. (I am one of the developers.)

Claus

link|flag
vote up 1 vote down

The sawfish window manager which used to be included in Gnome was written in a LISP dialect.

link|flag
vote up 0 vote down

I believe some of the earlier Yahoo shops stuff was in LISP. It was written by Paul Graham and company and then bought out by Yahoo. But I think Yahoo has since rewritten it in another language. He wrote an essay about it.

link|flag
vote up 0 vote down

http://beta2.thanandar.de/

link|flag
vote up 0 vote down

There are a number (6-12 at least) of small startups deploying webapps today. I'm running an open source community platform for rare disease research at www.lamsight.org.

Also see InspireData (http://www.inspiration.com/InspireData). You can download a great demo. Beautiful app using OpenGL (I believe) for the multi-platform GUI.

link|flag
vote up 0 vote down

Teepeedee2, a recently-announced web server is written entirely in LISP. The creator claims it's the "world's fastest web server for small dynamic content." Whether this is a reasonable statement or not has fueled the ire of many Slashdot commenters. Regardless, it's a perfect example of how LISP is still a relevant and useful language that should be given more credit.

link|flag

Your Answer

Get an OpenID
or

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