ex19.pp 307 B

123456789101112
  1. Program Example19;
  2. { Program to demonstrate the Eoln function. }
  3. begin
  4. { This program waits for keyboard input. }
  5. { It will print True when an empty line is put in,
  6. and false when you type a non-empty line.
  7. It will only stop when you press enter.}
  8. While not Eoln do
  9. Writeln (eoln);
  10. end.