Taoufik Dachraoui <dachraoui.taoufik at gmail.com> writes:
> Hello
>
>
> I would like to return the function object from a string
>
> (f "+") == (function +)
(defun f (string)
(let ((symbol (find-symbol string)))
(when (fboundp symbol)
(fdefinition symbol))))
--
With Best Regards, Stas.