ex14.pp 287 B

12345678910111213
  1. Program Example14;
  2. uses Crt;
  3. { Program to demonstrate the LowVideo, HighVideo, NormVideo functions. }
  4. begin
  5. LowVideo;
  6. WriteLn('This is written with LowVideo');
  7. HighVideo;
  8. WriteLn('This is written with HighVideo');
  9. NormVideo;
  10. WriteLn('This is written with NormVideo');
  11. end.