diff --git a/clearscreen.hpp b/clearscreen.hpp index e4f704e..3021783 100644 --- a/clearscreen.hpp +++ b/clearscreen.hpp @@ -1,11 +1,13 @@ #include -#include "clearscreen.hpp" - using namespace std; -int main() +void clearScreen() { - cout << "Hallo Welt!" << endl; - clearScreen(); - return 0; + /*#ifdef _WIN32 + system("cls"); + #endif + #ifdef LINUX + system("clear"); + #endif*/ + cout << string(50, '\n'); } \ No newline at end of file