fpc/tests/webtbs/tw13552.pp
Jonas Maebe e8edc31a89 * don't insert thousandseparator if it is #0 (mantis #13552, patch by
Jesus Reyes)

git-svn-id: trunk@13028 -
2009-04-23 19:16:49 +00:00

14 lines
187 B
ObjectPascal

uses
sysutils;
var
s: ansistring;
begin
ThousandSeparator:=#0;
DecimalSeparator:='.';
s:=formatfloat('#,0.00',1000.0);
writeln(s);
if (s<>'1000.00') then
halt(1);
end.