Search Results

11
votes

Executing code stored as a list

(eval '(+ 2 21)) …
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 …
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 …