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 / tw22344.pp
Size: Mime:
program showbug ;

{$mode macpas}

var
  glob: integer;

function countchars: INTEGER ;
begin
  countchars:=255;
  if glob=5 then
    countchars := 0
  else
    begin
      inc(glob);
      countchars := 1 + countchars
    end
  end;

begin
  if countchars<>5 then
    halt(1);
end .