ex8.pp 205 B

1234567891011
  1. Program Example8;
  2. uses Crt;
  3. { Program to demonstrate the ClrScr function. }
  4. begin
  5. Writeln('Press any key to clear the screen');
  6. ReadKey;
  7. ClrScr;
  8. Writeln('Have fun with the cleared screen');
  9. end.