Skip to content

Instantly share code, notes, and snippets.

@mherod
Created July 18, 2013 01:58
Show Gist options
  • Save mherod/6026147 to your computer and use it in GitHub Desktop.
Save mherod/6026147 to your computer and use it in GitHub Desktop.
Hello world in C++
#include <iostream>
using namespace std;
void main()
{
cout << "Hello World!" << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment