Expected results for test: P3-05.pl460 P3-05.pl460 : (define (main) (display '(a)) (newline) (display '()) (newline) (display '(0 1 2)) (newline) (display '(0 1 2 (a) 5 5)) (newline) ) (main) Input file: P3-05.pl460 0 errors found in input file P3-05.cpp : // Autogenerated PL460 to C++ Code // File: P3-05.cpp #include #include "Object.h" using namespace std; int main () { Object __RetVal; cout << Object("(a )"); cout << endl; cout << Object("()"); cout << endl; cout << Object("(0 1 2 )"); cout << endl; cout << Object("(0 1 2 (a ) 5 5 )"); cout << endl; return 0; } PL460 program output: (a) () (0 1 2) (0 1 2 (a) 5 5) C++ program output: (a) () (0 1 2) (0 1 2 (a) 5 5) Differences: < pl460 | cpp > (a) (a) () () (0 1 2) (0 1 2) (0 1 2 (a) 5 5) (0 1 2 (a) 5 5)