Please send questions to st10@humboldt.edu .
#include <iostream>
#include <cmath>
#include "rect_area.h"
using namespace std;


int main()
{
    cout << boolalpha;
    cout << endl;
    cout << "testing rect_area: true's should mean passed: " << endl;
    cout << "---------------------------------------" << endl;
    cout << "(rect_area(3, 4) == 12.0): " << (rect_area(3, 4) == 12.0) << endl;
    cout << "(rect_area(10, 20) == 200): " << (rect_area(10, 20) == 200) << endl;
    cout << endl;

    return EXIT_SUCCESS;
}