/****************************************************************************
File name: simple.c
Author: Chadd Williams
Date: 2/4/00
Class: CS480
Assignment: Eclipse Example
Purpose: This is a simple C file that can be used to demonstrate how to use Eclipse and Subversion.
****************************************************************************/

#include <stdio.h>

void printer(char * str)
{
    printf("%s", str);
}

int main(int argc, char** argv)
{
    printer("HELLO WORLD");
    printer("\n");
    printer("GOODBYE WORLD");
    printer("\n");
}