mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 17:55:08 +00:00
8 lines
102 B
C++
8 lines
102 B
C++
#include <LibC/stdio.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
printf("\033[3J\033[H\033[2J");
|
|
return 0;
|
|
}
|
|
|