fpc/docs/refex/ex58.pp
1998-03-25 11:26:49 +00:00

16 lines
273 B
ObjectPascal

Program Example58;
{ Program to demonstrate the SeekEoln function. }
Var
C : Char;
begin
{ This will read the first line of standard output and print
all characters except whitespace. }
While not SeekEoln do
Begin
Read (c);
Write (c);
end;
end.