Added cpp file that creates a file (for testing)
This commit is contained in:
parent
34618e1e1e
commit
f46635ab6c
|
@ -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();
|
||||||
|
}
|
Loading…
Reference in New Issue