Componentes.Terceros.jvcl/internal/3.36/1/examples/JvInterpreterDemos/JvInterpreterTest/samples/sample - TStrings.pas
2009-03-04 12:31:55 +00:00

10 lines
155 B
ObjectPascal

var
SS: TStringList;
begin
SS := TStringList.Create;
SS.Add('Line 0');
SS.Add('Line 1');
Result := '! ' + SS[1] + ' !';
SS.Free;
end;