Added cpp file that creates a file (for testing)

This commit is contained in:
VakarisZ 2020-01-10 14:31:27 +02:00
parent 34618e1e1e
commit f46635ab6c
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#include <iostream>
#include <fstream>
using namespace std;
void main()
{
std::ofstream outfile ("C:/Windows/Temp/test.txt");
outfile << "my text here!" << std::endl;
outfile.close();
}