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

jQuery clickable div with working mailto link inside -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -

java - Getting corefrences with Standard corenlp package -