mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
24 lines
369 B
ObjectPascal
24 lines
369 B
ObjectPascal
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
|
|
uses classes;
|
|
|
|
var SL : TStringlist;
|
|
|
|
begin
|
|
SL := TStringlist.Create;
|
|
sl.Add('1');
|
|
sl.Add('2');
|
|
sl.Add('A"A');
|
|
sl.Add('B');
|
|
sl.Add('C,C');
|
|
sl.Add('D;D');
|
|
writeln(sl.Text);
|
|
writeln(sl.CommaText);
|
|
if sl.CommaText<>'1,2,"A""A",B,"C,C",D;D' then
|
|
begin
|
|
writeln('ERROR!');
|
|
halt(1);
|
|
end;
|
|
sl.free;
|
|
end.
|