Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbs / tw23744.pp
Size: Mime:
var
  S:String[16];
  C:Char = '?';
  inss: string = 'abc';
begin
  S:='DefineTestString';
  Insert(C,S,20);
  if (length(s)>16) or
     (s<>'DefineTestString') then
    halt(1);
  insert(inss,s,20);
  if (length(s)>16) or
     (s<>'DefineTestString') then
    halt(2);
end.