1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00
ladybird/Userland/clear.cpp
2019-06-07 11:49:31 +02:00

8 lines
116 B
C++

#include <stdio.h>
int main(int, char**)
{
printf("\033[3J\033[H\033[2J");
fflush(stdout);
return 0;
}