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


int main()
{
    cout << boolalpha;
    cout << endl;
    cout << "testing greeting: true's should mean passed: " << endl;
    cout << "---------------------------------------" << endl;
    greeting("Sarah");
    cout << "(...will return nothing, but will cause to be printed to the screen:): " << endl;
    cout << "Hi, Sarah!" << endl;
    cout << endl;

    return EXIT_SUCCESS;
}