mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
10 lines
158 B
ObjectPascal
10 lines
158 B
ObjectPascal
uses sysutils;
|
|
|
|
var
|
|
cs:String;
|
|
begin
|
|
cs:=FormatFloat('0.00000E+0000',52247.9532745);
|
|
if (cs<>'5'+DecimalSeparator+'22480E+0004') then
|
|
halt(1);
|
|
end.
|