All pastes #2069030 Raw Edit

Miscellany

public text v1 · immutable
#2069030 ·published 2011-05-25 16:32 UTC
rendered paste body
#include <iostream>                                    
                                                                 // Include standard library for I/O
using namespace std;                          // Declare access to the standard C++ library
 
int main()                                               // Main function = execution starting place
{                                                               // Beginning of main function
   cout << "Hello, world!" << endl;           // Directs the string into standard output stream
   return 0;                                  // Return that worked as expected (no errors)
}                                            // End of main function