2021-11-29 12:06:23 +01:00
|
|
|
//rd7cc
|
|
|
|
#include <iostream>
|
2021-11-29 12:10:36 +01:00
|
|
|
#include <fstream>
|
2021-11-29 12:06:23 +01:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2021-11-29 12:10:36 +01:00
|
|
|
std::ofstream result ("result.hpp");
|
|
|
|
|
|
|
|
result << "//Result" << std::endl;
|
|
|
|
|
|
|
|
result.close();
|
2021-11-29 12:06:23 +01:00
|
|
|
}
|