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


int main()
{
    cout << boolalpha;
    cout << endl;
    cout << "testing get_word: true's should mean passed: " << endl;
    cout << "---------------------------------------" << endl;
    cout << "(get_word() == \"howdy!!!\"): " << (get_word() == "howdy!!!") << endl;
    cout << "(get_word()): " << (get_word()) << endl;
    cout << endl;

    return EXIT_SUCCESS;
}