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