Guest

Hello World

By: a guest on Feb 16th, 2011  |  syntax: C++  |  size: 0.11 KB  |  hits: 165  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6.    cout << "Hello, World!\n";
  7.    return 0;
  8. }