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 / tbs / tb0446.pp
Size: Mime:
var
  a : array[0..9] of char;
  pc : pchar;
begin
  a:='1';
  if a=nil then
   halt(1);
  pc:=@a;
  if pc<>'1' then
   halt(1);
  writeln('OK')
end.