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

15 lines
257 B
ObjectPascal

Program Example57;
{ Program to demonstrate the SeekEof function. }
Var C : Char;
begin
{ this will print all characters from standard input except
Whitespace characters. }
While Not SeekEof do
begin
Read (C);
Write (C);
end;
end.