I’m confused as to why this test is a runtime error and not a syntax error (missing semi colon). As it is failing in the parsing stage, shouldn’t this be syntax error? (65)
The test is failing because the tester in stage #IB5 and all the previous stages is expecting an expression, not a statement. I had to write the program to expect statements for the run command and an expression for evaluate and parse.
If it’s expecting an expression, this would be a parse error since both operands should be numbers.