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

  1. Program Example9;
  2. uses Crt;
  3.  
  4. { Program to demonstrate the ClrEol function. }
  5.  
  6. begin
  7.   Write('This line will be cleared from the',
  8.         ' cursor postion until the right of the screen');
  9.   GotoXY(27,WhereY);
  10.   ReadKey;
  11.   ClrEol;
  12.   WriteLn;
  13. end.
  14.