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 / tb0460.pp
Size: Mime:
const
  MinCurrency : Currency = -922337203685477.5807;
  MaxCurrency : Currency = 922337203685477.5807;

var
  s : string;

begin
  str(MinCurrency:0:4,s);
  if s<>'-922337203685477.5807' then
    begin
      writeln(s);
      halt(1);
    end;
  str(MaxCurrency:0:4,s);
  if s<>'922337203685477.5807' then
    begin
      writeln(s);
      halt(1);
    end;
end.