10 lines
130 B
C
10 lines
130 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
printf("\e[2J\e[H");
|
|
return 0;
|
|
}
|