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