/*
 * main.c - demo/test program for speak and shout functions
 * CSE303/374/331 demo, 11/07-4/14 HP
 */

#include "speak.h"
#include "shout.h"

/* Say HELLO and goodbye */
int main(int argc, char* argv[]) {
  shout("howdy");
  speak("we're outta here");
  return 0;
}