All pastes #2069034 Raw Edit

Someone

public cpp v1 · immutable
#2069034 ·published 2011-05-25 16:34 UTC
rendered paste body
#include <iostream>                                   									// Include standard library for I/Ousing 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