vote up 5 vote down star
1

After understanding (quote), I'm curious as to how one might cause the statement to execute. My first thought was

(defvar x '(+ 2 21))
`(,@x)

but that just evaluates to (+ 2 21), or the contents of x. How would one run code that was placed in a list?

flag

I'm thinking you're asking the wrong question. What do you really want to do? – Mikael Jansson Oct 6 '08 at 13:13

3 Answers

vote up 11 vote down check

(eval '(+ 2 21))

link|flag
Wow - it's so simple... – Cristián Romo Oct 6 '08 at 1:01
:) Note that you can do some interesting things with backtick to control what gets evaluated by eval. – Rich Oct 6 '08 at 1:13
Now I'm curious... may I have an example please? – Cristián Romo Oct 6 '08 at 19:15
vote up 0 vote down

@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, but:

(eval `(and ,@(loop for x from 1 upto 4 collect `(evenp ,x))))

is equivalent to

(eval '(and (evenp 1) (evenp 2) (evenp 3) (evenp 4)))

Incidentally, this has the same result as the (much more efficient)

(every 'evenp '(1 2 3 4))

Hope that satisfies your curiosity!

link|flag
That's interesting... I'm going to have to learn more about all these fancy little tricks. – Cristián Romo Oct 7 '08 at 18:27
vote up 0 vote down

Take a look at funny Lisp tutorial at http://lisperati.com/. There are versions for Common Lisp and Emacs Lisp, and it demonstrates use of quasiquote and macros.

link|flag

Your Answer

Get an OpenID
or

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