default input is from file exampleInput.txt BEGIN 5 >= (1*2) bracket = 1 * 2 = 2 ; 5 >= 2 is true 6 = (7-1) bracket = 7 - 1 = 6 ; 6 = 6 is true 10 > 4; 10 > 4 is true 4 <= (25/5) bracket = 25 / 5 = 5 ; 4 <= 5 is true 15 < (14+5) bracket = 14 + 5 = 19 ; 15 < 19 is true var = cannot be statically evaluated 7-1; END end of file encountered!