Title: [C++] /* Copyright (C) 2013 Wesley For legal purposes - My real name (as md5 hash): Author: I_wesley125 Pastebin link: http://pastebin.com/817payAY First Edit: Saturday 28th of September 2013 01:02:23 AM CDT Last Edit: Saturday 28th of September 2013 01:02:23 AM CDT /* Copyright (C) 2013 Wesley For legal purposes - My real name (as md5 hash): b03b2535dca6c972fe2df1bfdd73304d   This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. */   #include #include using namespace std;   int main (int argc, char* argv[]) {   ofstream outFile;   outFile.open (argv[1]);   outFile << argv[2];   outFile.close();   cout << "Done!" << "\n";   return 0; }