mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
10 lines
136 B
ObjectPascal
10 lines
136 B
ObjectPascal
uses sysutils;
|
|
|
|
var
|
|
cs:String;
|
|
begin
|
|
cs:=FormatFloat('000.000',-1);
|
|
if (cs<>'-001'+DecimalSeparator+'000') then
|
|
halt(1);
|
|
end.
|