/* 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, should return an int to be standards-compliant
 {
	/* Use the stream insertion operator << to push data to the output
	 * stream.  The endl manipulator prints a newline and flushes data.
	 */
	cout << "Help!  I'm trapped in a .cpp file!" << endl;
	return 0;
 }