Hi,
I'm looking for a function in Scheme to replace a element in an equation by a value.
Exemple : '(+ a b c a)
with (1 2 3)
should give me '(+ 1 2 3 1)
. (I don't want to resolve the equation, it was just an exemple)
Basically, I want to say that a=1, b=2, c=3
To proceed, I extract the variables of my first list in another list. Then, I received the expected values in another list. Now, I want to assign values to variables.
Any hints on how I proceed? Thanks a lot.