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


int main()
{
    cout << boolalpha;
    cout << endl;
    cout << "testing name_length: true's should mean passed: " << endl;
    cout << "---------------------------------------" << endl;
    cout << "(name_length(\"Ann\", \"Burroughs\") == 12): " << (name_length("Ann", "Burroughs") == 12) << endl;
    cout << "(name_length(\"Hi'there\", \"Y'all\") == 13): " << (name_length("Hi'there", "Y'all") == 13) << endl;
    cout << endl;

    return EXIT_SUCCESS;
}