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.2.0 / tests / webtbs / tw16377.pp
Size: Mime:
program project1;
const
  S: string = '123';
var
  I: Integer;
  P: PChar;
begin
  {$RANGECHECKS ON}
  P := PChar(@S[2]);
  I := -1;
  if (P[-1]<>'1') or
     (P[I]<>'1') then
   halt(1);
end.