// Oldham, Jeffrey D. // 2000 Jan 29 // CS1321 // The Shell of a Throw-Away Program // When trying to use code for the first time, try testing its // features here. #include #include // has EXIT_SUCCESS int main() { cout << "starting" << endl; // Add test code here. cout << "ending" << endl; return EXIT_SUCCESS; }