home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / basic / library / asic / ascsu215 / darkscrn.asi < prev    next >
Text File  |  1991-11-11  |  400b  |  24 lines

  1. start:
  2.  
  3. rem This program blanks your screen.  It's designed to be used from the DOS 
  4. rem prompt; if your DOS screen color is other than black, it won't work too 
  5. rem well.
  6.  
  7. rem It requires approximately 64K of RAM.
  8.  
  9. rem By Matt Roberts
  10. rem 3 Cedar St., # 8
  11. rem Montpelier, Vt 05602-3006
  12. rem (802)223-2553
  13.  
  14. cls
  15. locate 81,81
  16.  
  17. loop:
  18. a$=inkey$
  19. if a$="" then loop:
  20.  
  21. finish:
  22. cls
  23. end
  24.