Converting a string name into a function call
I have defined several functions with no arguments,
for example:
(defun foo () etc)
(defun bar () etc)
etc
My program generates function names as strings like
this:
"FOO"
When my program gives me the name "FOO", I'd
like to then call and execute the corresponding function (FOO). Is there a
way to convert the string name into a callable function name? I can intern
the string, but that apparently doesn't bind it to the desired function.
(I was hoping to avoid a bunch of IF-THEN look-ups.)
Bruce.