tw1758.pp 280 B

123456789101112131415
  1. { %interactive }
  2. uses crt;
  3. begin
  4. clrscr;
  5. Window(1,2,80,3); {this does not work; if you set the last parameter to 4 (=3 lines) everything is fine}
  6. gotoxy(1,1); write('clear now ? (this is only to fill some text...)');
  7. readkey;
  8. clrscr;
  9. readkey;
  10. write('cleared !');
  11. readkey;
  12. end.