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 <iostream>
#include "clearscreen.hpp"
using namespace std; using namespace std;
int main() void clearScreen()
{ {
cout << "Hallo Welt!" << endl; /*#ifdef _WIN32
clearScreen(); system("cls");
return 0; #endif
#ifdef LINUX
system("clear");
#endif*/
cout << string(50, '\n');
} }