top | item 9843327

(no title)

chaoky | 10 years ago

Good Common Lisp doesn't use lists. A Lisp app does nothing like processing lists; in fact, Common Lisp only uses list-processing for processing source-code (aka macros). It is much more like a faster, more functional Ruby or Python in that it uses classes, looping, but encouraging good functional abstractions. Real-world Common Lisp looks nothing like scheme.

discuss

order

allendoerfer|10 years ago

So what would be a good example use case in your mind?

martinflack|10 years ago

CL is a powerful general purpose language in which you can accomplish much the same things as other programming languages. Where it will really shine is when you benefit from extending the language or environment to suit a domain and then you solve problems of that domain.

Try this as an explanation (and keep reading the book): http://www.gigamonkeys.com/book/introduction-why-lisp.html