home *** CD-ROM | disk | FTP | other *** search
- start:
-
- rem This program blanks your screen. It's designed to be used from the DOS
- rem prompt; if your DOS screen color is other than black, it won't work too
- rem well.
-
- rem It requires approximately 64K of RAM.
-
- rem By Matt Roberts
- rem 3 Cedar St., # 8
- rem Montpelier, Vt 05602-3006
- rem (802)223-2553
-
- cls
- locate 81,81
-
- loop:
- a$=inkey$
- if a$="" then loop:
-
- finish:
- cls
- end
-