ex8.pp 137 B

12345678
  1. Program Example8;
  2. { Program to demonstrate the Chr function. }
  3. begin
  4. Write (chr(10),chr(13)); { The same effect as Writeln; }
  5. end.