Transferring.

This commit is contained in:
Shadow8t4 2017-10-25 08:45:19 -05:00
parent 7cdb637668
commit b43727abb7

View file

@ -22,9 +22,20 @@ node makeTree(string input, node n, int level)
while(input.length() != 0)
{
// If the char is a digit.
if(tempc)
{
}
// If the char is a comma.
else if(tempc == ',')
{
}
// If the char is a close paranthesis.
else if(tempc == ')')
{
}
}
}