mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 21:49:38 +02:00
12 lines
285 B
ObjectPascal
12 lines
285 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.}
|
|
Writeln (eoln);
|
|
end.
|