ex58.pp 273 B

123456789101112131415
  1. Program Example58;
  2. { Program to demonstrate the SeekEoln function. }
  3. Var
  4. C : Char;
  5. begin
  6. { This will read the first line of standard output and print
  7. all characters except whitespace. }
  8. While not SeekEoln do
  9. Begin
  10. Read (c);
  11. Write (c);
  12. end;
  13. end.