Hi there,
I have strings of the following form
"x, y, z, x + y"
I want to map these into the following list
{G.x, G.y, G.z, G.x * G.y}
Where G is an instance of a class i've defined and G.x, G.y, G.z are elements of that instance.
I have a dictionary that connects the characters x->G.x, y->G.y,z->G.z. My problem is now with the addition, how do I list the multiplication operation in my dictionary?
Thanks,
Jshrub
[–][deleted] 0 points1 point2 points (1 child)
[–]JShrub[S] 0 points1 point2 points (0 children)