mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-15 11:26:36 +02:00
9 lines
102 B
C++
9 lines
102 B
C++
#include <LibC/stdio.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
printf("\033[3J\033[H\033[2J");
|
|
return 0;
|
|
}
|
|
|