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

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -