lisp - How do I apply a symbol as a function in Scheme? -
Is there any way, can I apply '+ to' (1 2 3)?
EDIT: The one I am trying to say is that the function I get will be the symbol. Is there a way to do this?
Thank you.
((Eval '+)' (1 2 3)) Apply
should do it.
Comments
Post a Comment