vote up 11 vote down star
2

Never been a lisp user, so don't take me as too dense while reading this.

But what is lisp used for today ?

I know there are several variants of the language in existence, at least one which will keep it alive commercially for a while longer (AutoLisp, VisualLisp - pretty big support from Autodesk) ... but I don't meet everyday people using it. So if you can shed some light on the matter - what is it's primary target market nowadays ?
And what do you believe its future will be ... will it become just another support language in few apps, or is it going somewhere ?

Also, apart from "an editor whose name shall not be spoken" what other apps keep it as a support language ?

flag

65% accept rate
1  
The question every CS student asks him/herself at some point or another :P – boris callens Apr 28 at 7:05
5  
Lisp is used in many applications, but mostly not the way CS students learn it. They use Lisp for basic CS concepts. Real Lisp software often looks different. More macros, more object-oriented, more imperative, lots of low-level stuff, ... The typical student might get the impression that Lisp has only lists as a data structure and that everything is made out of lists (alternatively out of functions). But that is not the case for real Lisp software. – Rainer Joswig Apr 28 at 10:03

10 Answers

vote up 5 vote down

One example from my lisp projects:

ShareBot: It downloads stock market data, analyses it and trades automatically. Credits money into my bank account every month!

link|flag
vote up 8 vote down

The Lisp dialect Clojure seems to be growing in popularity - you might ask out at http://clojure.org/ in one of the forums to see what real-world apps people are building with it.

link|flag
vote up 3 vote down

Seems to be existent in the job market

24 jobs on dice.

link|flag
vote up 3 vote down

Common Lisp isn't widely used in the field at all, but here is one of the most succesful applications I know of.

ITA Software: Airfare Shopping Engine and Franz lisp has a list of others.

link|flag
vote up 3 vote down

CoCreate Modeling, an extensive 3D CAD application uses Common Lisp as its extension language. AFAIK there are now 1M+ LOC in Common Lisp for that application. Actually Common Lisp is not only the extension language, but large parts of the application are written in Common Lisp (plus some C++).

Other than that Lisp is a family of diverse dialects with diverse implementations (Scheme, Common Lisp, Emacs Lisp, Visual Lisp, Clojure, Logo, ...) and several others.

Strengths are for example:

  • symbolic computing (Maxima, Reduce, Axiom, ACL2, ...)
  • AI, Semantic Web, ... (see the customer stories of Franz for some examples)
  • CAD (AutoCAD, CoCreate, and several others)
  • Music (OpenMusic, Common Music, PWGL, ...)
  • graphical applications (see the LispWorks customer stories for some examples)
  • development environments (Emacs and others)
  • Education (DrScheme, ...)
link|flag
Interesting. Very interesting. I used CADDS on a daily basis, and yet I never heard of this one. Thanks for the tip ! – ldigas Apr 27 at 19:08
vote up 6 vote down

Aircraft Design : http://www.piano.aero/

LispWorks lists several applications : http://www.lispworks.com/success-stories/index.html

Franz technologies are widely applicable : http://www.franz.com/

link|flag
vote up 4 vote down

Also see the topics of the International Lisp conference 2009. This should give you an impression what people are using Lisp for and what new ideas they are thinking about.

link|flag
vote up 4 vote down

I wanted to typeset some music last week, and the program with the best reputation (free or otherwise) seemed to be Lilypond. I was pleasantly surprised to see it's largely written in, and customizable with, Scheme.

link|flag
vote up 3 vote down

Mostly for configuring and extending Emacs!

*ducks*

link|flag
vote up 0 vote down

It is used for anything ant everything that all other programming languages are used for, including web, games, internal applications, ...

link|flag

Your Answer

Get an OpenID
or

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