mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 06:29:25 +02:00
13 lines
236 B
ObjectPascal
13 lines
236 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. |