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 <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');
|
||||||
}
|
}
|
Loading…
Reference in a new issue