richtigen Code zugefügt - früherer commit war ein Fehler
This commit is contained in:
parent
3591ab073c
commit
ab8211c545
1 changed files with 8 additions and 6 deletions
|
@ -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');
|
||||
}
|
Loading…
Reference in a new issue