/********************************************************************************************
proj0.cpp
Jim Millard
for CO211/Fall 1999
Simple program that displays my name & email address to
the console.
Follows the format:
name
<blank line>
email
********************************************************************************************/
#include <iostream.h>
int main()
{
cout << "Jim Millard"
<< endl;
cout << endl;
cout << "jim3@millard.org"
<< endl;
return 0;
}