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

 Purpose: see what happens if I call greeting
          with the argument of calling get_word

 Examples: if, when I run this, I type in
Howdy
           when asked, then I should see:
Hi, Howdy!!!, how are you doing?
           printed to the screen
 
 by: Sharon Tuttle
 last modified: 3-24-10
-----*/

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

int main()
{
    greeting( get_word() );

    return EXIT_SUCCESS;
}