fpc/tests/webtbs/tw27029.pp
2014-11-23 20:18:19 +00:00

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.