diff --git a/test.cpp b/test.cpp new file mode 100644 index 0000000..050515d --- /dev/null +++ b/test.cpp @@ -0,0 +1,17 @@ +#include +#include +#include + +using namespace std; + +int main() +{ + time_t now = time(0); + char* dt = ctime(&now); + ofstream sdfailed; + std::ofstream outfile ("../../logs/sdfailed.txt", std::ios_base::app); + outfile << "INVALID PATH FOR DEFAULT EDITOR/FOLDER IN " << dt << "\n"; + outfile.close(); + return 0; +} + diff --git a/test.py b/test.py deleted file mode 100644 index 04af24d..0000000 --- a/test.py +++ /dev/null @@ -1,5 +0,0 @@ -print("This is a test") -x=0 -while x != 5: - x += 1 - print(x)