vkdot/cl/cl.c

8 lines
242 B
C
Raw Permalink Normal View History

2025-03-02 03:05:35 -05:00
/*********************************************
* Description - This is how you clear the screen
* Author - Vilyaem
* Date - Nov 09 2023
* *******************************************/
#include <stdio.h>
void main(void){puts("\x1b[H\x1b[J");}