ex48.pp 236 B

12345678910111213
  1. Program Example48;
  2. { This program demonstrates the AdjustLineBreaks function }
  3. Uses sysutils;
  4. Const
  5. S = 'This is a string'#13'with embedded'#10'linefeed and'+
  6. #13'CR characters';
  7. Begin
  8. Writeln (AdjustLineBreaks(S));
  9. End.