Clears the display screen.
CLS
The screen is cleared and the cursor is located at the home position. Pressing the SHIFT CLS key or executing PRINT CHR$(12); produces the same result.
SHIFT
PRINT CHR$(12);
10 REM CLEAR SCREEN 20 CLS
Clears screen.