// File Name:   shell.cpp
// Author:      Steve Ryner
// Email:       sryner@mail.depaul.edu
// Assignment:  any
// Description: This empty shell program does nothing.
// Date:        June 1998

#include <iostream.h>

int main()
{
    return 0;
}

