fpc/tests/webtbs/tw7105.pp
Jonas Maebe 117774e006 * fixed web bug #7105
git-svn-id: trunk@5068 -
2006-10-29 19:22:04 +00:00

20 lines
268 B
ObjectPascal

var i:integer;
H:single;
s:string;
begin
H:= 10;
for i:=1 to 25 do
begin
str(H:8,s);
if (s[1] <> ' ') or
(length(s) <> 8) then
begin
writeln(s);
halt(1);
end;
H:= H / 10.0;
end;
end.