I am trying to write an Interpreter but are not really sure about the methods that are used for this.
What I think I have understood is for the example below, I will have to parse out 3 things from the string.
"Number1", "==" and "2" and associate these to maps in some way ?
Though I dont know much more than this and are not sure where to begin how to do this ?
What could be the first step.
int Number1 = 2;
std::string Criteria = "Number1 == 2";
if ( Criteria )
{
MessageBox::Show("Number1 has a Value of 2");
}