I want to be able to convert a given string like : "x+2*y==3"
into a real code so that i can put this into an if-loop and get a true or false for given x and y.
like:
x y boolean
1 2 true
6 -3 true
...

