What is SourceDrop?

SourceDrop is the easiest way to share your snippets. Try it yourself!

HelloWorld.cpp

download
//
// SourceDrop allows to share multiple snippets as one upload.
// This makes it very easy to share header and implementation files in languages like C, C++ and ObjC.
//
#include "HelloWorld.h"
#include <iostream>
using namespace std;

int main(void)
{
 cout << "Hello World!";
 return 0;
}
Uploaded at 06/17/12 11:51 (UTC)

HelloWorld.h

download
//
// Hello World - SourceDrop Sample Snippet
//
int main(void);
Uploaded at 06/17/12 11:51 (UTC)