/* Lecture code 0.0
 *
 * A prototypical first C++ program.  Comments have been added to the
 * relevant sections
 */
 
 #include <iostream> // Needed for cout
 using namespace std; // Allow us to use shorter names (i.e. cout instead of std::cout)
 
 int main() { // Main entry point, must return int.
	/* Use the stream insertion operator << to push data to the output
	 * stream.  The endl manipulator prints a newline and flushes data.
	 */
	cout << "Goodbye, cruel world!" << endl;
	return 0;
 }