mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 20:53:48 +02:00
15 lines
257 B
ObjectPascal
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.
|