home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / crtex / ex14.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  287 b   |  14 lines

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