What is SourceDrop?
// // 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; }
// // Hello World - SourceDrop Sample Snippet // int main(void);