mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 04:49:19 +02:00
no message
This commit is contained in:
parent
79e37b1ba5
commit
e861eaa4c0
@ -2,5 +2,22 @@ const
|
|||||||
MinCurrency : Currency = -922337203685477.5807;
|
MinCurrency : Currency = -922337203685477.5807;
|
||||||
MaxCurrency : Currency = 922337203685477.5807;
|
MaxCurrency : Currency = 922337203685477.5807;
|
||||||
|
|
||||||
|
var
|
||||||
|
s : string;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
str(MinCurrency:0:4,s);
|
||||||
|
{ output according to delphi }
|
||||||
|
if s<>'-922337203685477.5810' then
|
||||||
|
begin
|
||||||
|
writeln(s);
|
||||||
|
halt(1);
|
||||||
|
end;
|
||||||
|
str(MaxCurrency:0:4,s);
|
||||||
|
{ output according to delphi }
|
||||||
|
if s<>'922337203685477.5810' then
|
||||||
|
begin
|
||||||
|
writeln(s);
|
||||||
|
halt(1);
|
||||||
|
end;
|
||||||
end.
|
end.
|
Loading…
Reference in New Issue
Block a user