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