SOURCE FILE: lab01.cpp


// Program to print part of a song 

#include <iostream>

using namespace std ;

int main(void)
{
   cout << "If you'll gather 'round me, children,\n" ;
   cout << "A tale I will relate" ;
   cout << endl << "'Bout Pretty Boy Floyd, an outlaw,\n" ;
   cout << "known throughout this state." << endl;

   return 0;
}