mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
12 lines
210 B
ObjectPascal
12 lines
210 B
ObjectPascal
uses
|
|
sysutils, math;
|
|
|
|
begin
|
|
DecimalSeparator:=',';
|
|
if FloatToStrF(nan, ffExponent, 15, 1)<>'Nan' then
|
|
halt(1);
|
|
if FloatToStrF(1.3, ffExponent, 15, 1)[2]<>',' then
|
|
halt(1);
|
|
writeln('ok');
|
|
end.
|