fpc/tests/webtbs/tw12051.pp
2008-09-04 18:48:25 +00:00

11 lines
136 B
ObjectPascal

program doubleconv;
var
s: string;
begin
str(double(10000000000000000000),s);
writeln(s);
if (pos('-',s)<>0) then
halt(1);
end.