Skip to content

Instantly share code, notes, and snippets.

@madduci
Created December 15, 2014 07:19
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 madduci/8c39feb73f6f2efa4cc5 to your computer and use it in GitHub Desktop.
Save madduci/8c39feb73f6f2efa4cc5 to your computer and use it in GitHub Desktop.
Modern C++ - Hello World
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment