I am trying to figure out how to get the eval function to read a string and evaluate the contents inside the string.
I currently know that
> (eval '(+ 1 2)) 3
but I'm not so good at using racquets. So at the moment I'm trying to make it so that I can do this:
> (eval "(+ 1 2)") 3
Any tips or links to useful resources would be appreciated.
Razed source share