Componentes.Terceros.jvcl/official/3.39/examples/JvInterpreterDemos/JvInterpreterTest/samples/sample - TStrings 2.pas
2010-01-18 16:55:50 +00:00

14 lines
163 B
ObjectPascal

unit U;
function main: string;
var
SS: TStringList;
begin
SS := TStringList.Create;
SS.Add('Line 0');
Result := SS[0];
SS.Free;
end;
end.