mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-01 21:13:41 +02:00
13 lines
307 B
ObjectPascal
13 lines
307 B
ObjectPascal
Program Example19;
|
|
|
|
{ Program to demonstrate the Eoln function. }
|
|
|
|
begin
|
|
{ This program waits for keyboard input. }
|
|
{ It will print True when an empty line is put in,
|
|
and false when you type a non-empty line.
|
|
It will only stop when you press enter.}
|
|
While not Eoln do
|
|
Writeln (eoln);
|
|
end.
|