1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00
sortix--sortix/utils/clear.cpp

8 lines
90 B
C++
Raw Normal View History

#include <stdio.h>
int main(int argc, char* argv[])
{
printf("\e[H\e[2J");
return 0;
}