mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 08:28:08 +02:00
19 lines
270 B
ObjectPascal
19 lines
270 B
ObjectPascal
{$mode objfpc}
|
|
|
|
uses classes;
|
|
|
|
var list : TStringList;
|
|
|
|
begin
|
|
list := TStringList.Create;
|
|
try
|
|
list.commatext := '"0","6","-1"';
|
|
writeln ('---');
|
|
writeln (list.text);
|
|
writeln ('---');
|
|
finally
|
|
list.Free;
|
|
writeln ('Freeing list');
|
|
end;
|
|
end.
|