"Untitled" By I_wesley125 (https://pastebin.com/u/I_wesley125) URL: https://pastebin.com/817payAY Created on: Saturday 28th of September 2013 01:02:23 AM CDT Retrieved on: Friday 30 of October 2020 11:42:37 AM UTC /* 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; }