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