Skip to content

Instantly share code, notes, and snippets.

@gistsobo
Created June 3, 2013 06:01
Show Gist options
  • Save gistsobo/5696333 to your computer and use it in GitHub Desktop.
Save gistsobo/5696333 to your computer and use it in GitHub Desktop.
CPP: std hello world
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
cout << "Hello world!" << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment