#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(\"Joe\", \"Smith\") == 8): " << (name_length("Joe", "Smith") == 8) << endl;
cout << endl;
return EXIT_SUCCESS;
}