Please send questions to st10@humboldt.edu .
/*-----
 Contract: main: void -> int

 Purpose: testing program for the functon greeting

 Examples: when I run this, I should see:

testing greeting
   should greet Sarah
---------------------------------------
Hi, Sarah, how are you doing?

           ...printed to the screen
 
 by: Sharon Tuttle
 last modified: 3-25-10
-----*/

#include <iostream>
#include <cmath>
#include "greeting.h"
using namespace std;

int main()
{
    cout << "testing greeting" << endl;
    cout << "   should greet Sarah" << endl;
    cout << "---------------------------------------" << endl;
    greeting("Sarah");

    return EXIT_SUCCESS;
}