In Common Lisp, is there a function that returns a symbol from a given string? -


i want

>(??? "car") car >((??? "car") '(1 2)) 1  

i can't seem find function this.

are looking this?

(eval (read-from-string "(car '(1 2))")) 

gives: 1


update:

how (funcall (intern "car") '(1 2)) ? :)


Comments

Popular posts from this blog

c# - IMAP GMAIL getting folder list problem -

CUDA shared memory -