richtigen Code zugefügt - früherer commit war ein Fehler

This commit is contained in:
Marc 2021-05-30 09:04:37 +02:00
parent 3591ab073c
commit ab8211c545
1 changed files with 8 additions and 6 deletions

View File

@ -1,11 +1,13 @@
#include <iostream>
#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');
}