cpp_utils/clearscreen.hpp

13 lines
174 B
C++

#include <iostream>
using namespace std;
void clearScreen()
{
/*#ifdef _WIN32
system("cls");
#endif
#ifdef LINUX
system("clear");
#endif*/
cout << string(50, '\n');
}