summaryrefslogtreecommitdiff
path: root/Userland/clear.cpp
blob: c7568b384e336775ab8ef11f01931fea26508d11 (plain)
1
2
3
4
5
6
7
8
#include <LibC/stdio.h>

int main(int, char**)
{
    printf("\033[3J\033[H\033[2J");
    return 0;
}