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