'<clearscreen.hpp>' zugefügt

This commit is contained in:
Marc 2021-05-30 07:47:27 +02:00
parent 22f94d4a3b
commit 3591ab073c
1 changed files with 11 additions and 0 deletions

11
clearscreen.hpp Normal file
View File

@ -0,0 +1,11 @@
#include <iostream>
#include "clearscreen.hpp"
using namespace std;
int main()
{
cout << "Hallo Welt!" << endl;
clearScreen();
return 0;
}