ex19.pp 285 B

1234567891011
  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. Writeln (eoln);
  9. end.