fpc/docs/sysutex/ex48.pp
2005-02-14 17:13:06 +00:00

13 lines
235 B
ObjectPascal

Program Example48;
{ This program demonstrates the AdjustLineBreaks function }
Uses sysutils;
Const
S = 'This is a string'#13'with embedded'#10'linefeed and'+
#13'CR characters';
Begin
Writeln (AdjustLineBreaks(S));
End.