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 / tw33167.pp
Size: Mime:
{$ifndef FPUNONE}
uses
  math;

var
  a,b,c : float;
begin
  a:=7.7;
  b:=1.1;
  c:=a mod b;
  if not(SameValue(c,0.0)) then
    begin
      writeln(c);
      halt(1);
    end;
  writeln('ok');
{$else FPUNONE}
begin
{$endif FPUNONE}
end.