Skip to content

Instantly share code, notes, and snippets.

@raghuugare
Last active August 29, 2015 14:14
Show Gist options
  • Save raghuugare/0ad44c3012fbe2a98200 to your computer and use it in GitHub Desktop.
Save raghuugare/0ad44c3012fbe2a98200 to your computer and use it in GitHub Desktop.
"Hello World!", in (Standard) C++
#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