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 / tbs / tb0579.pp
Size: Mime:
{ %opt=-O3 }
var
  i : longint;

function f : real;
  begin
    inc(i);
    f:=2;
  end;

begin
  i:=0;
  if f*f<>4 then
    halt(1);
  if i<>2 then
    halt(1);
  writeln('ok');
end.