Skip to content

Instantly share code, notes, and snippets.

@P1xt
Created August 5, 2014 17:26
Show Gist options
  • Save P1xt/9eaea5bfc9203046488c to your computer and use it in GitHub Desktop.
Save P1xt/9eaea5bfc9203046488c to your computer and use it in GitHub Desktop.
C++ Hello World
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
cin.get();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment