Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 17th, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5.   std::cout
  6.   << "#include <iostream>\n"
  7.   << "\n"
  8.   << "int main()\n"
  9.   << "{\n"
  10.   << "\tstd::cout << \"Hello, World!\" << std::endl;\n"
  11.   << "\treturn 0;\n"
  12.   << "}"
  13.   << std::endl;
  14. }