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