5 ms·
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 (ak
by chaoky 11y 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.
- allendoerfer 11y agoSo what would be a good example use case in your mind?
- martinflack 11y agoCL 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 http://www.gigamonkeys.com/book/introduction-why-lisp.html