Skip to content

Instantly share code, notes, and snippets.

@mumumu
Created March 17, 2009 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mumumu/80349 to your computer and use it in GitHub Desktop.
Save mumumu/80349 to your computer and use it in GitHub Desktop.
C++ Hello World
#include <iostream>
int main(int argc, char *argv[])
{
std::cout << "Hello World!!" << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment