PRINT CHR(27);"B0" REM--> This turns on the inverse video PRINT CHR(27);"B1" REM--> This turns on half intensity PRINT CHR(27);"B2" REM--> This turns on the blinking PRINT CHR(27);"B7" REM--> This enables the 25th line PRINT CHR(27);"=8 " REM--> Sends the cursor to the 25th line PRINT"THIS IS MY MACHINE" REM--> Prints on the 25th line (up to 80 col.) PRINT CHR(26) REM--> Clears the screen/homes the cursor END