Search Results

2
votes

Why is Lisp used for AI?

One possible answer is that AI is a collection of very hard problems, and Lisp is a good language for solving hard problems, not just AI. As to why that is: macros, generic functions, and r …
11
votes

Executing code stored as a list

(eval '(+ 2 21)) …
4
votes

Lisp in the real world

There are plenty of companies, projects, and products that use Lisp in a variety of roles — I've done work for several of them. There are two relevant points: you may never …
0
votes

Executing code stored as a list

@Christián Romo: Backtick example: you can kinda implement apply using eval and backtick, because you can splice arguments into a form. Not going to be the most efficient thing in the world …
0
votes

What is the best SQL libary for use in Common Lisp?

Allegro Common Lisp has an ODBC library and a …
3
votes

Lisp Web Frameworks?

Common Lisp A lot of the usual suspects (Hunchentoot, UCW, LoL) have already been mentioned. Franz makes available for Allegro Common Lisp (and ported to other Lisps): …
4
votes

Function persistence in Common Lisp

It's not a database persistence mechanism, but most Common Lisps have a way of writing FASL …
2
votes

What is the Definition of a Lisp Cons Cell?

I think the other answers here, while accurate, aren't explicit about one thing. In a traditional C++ linked list implementation, the two fields (val and next, say …
0
votes

Lisp soap client

Allegro Common Lisp has both a SOAP server and a SOAP client. I've used both with success, and they're c …