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

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.