Update main.cpp

This commit is contained in:
tobid7 2021-11-29 12:10:36 +01:00 committed by GitHub
parent eb0ccc8b25
commit 61285be23e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,11 @@
//rd7cc
#include <iostream>
#include <fstream>
int main(int argc, char* argv[])
{
std::ofstream result ("result.hpp");
result << "//Result" << std::endl;
result.close();
}