cpp_utils/clearscreen.hpp

11 lines
143 B
C++
Raw Normal View History

2021-05-30 07:47:27 +02:00
#include <iostream>
#include "clearscreen.hpp"
using namespace std;
int main()
{
cout << "Hallo Welt!" << endl;
clearScreen();
return 0;
}