summaryrefslogtreecommitdiff
path: root/tests/webtbs/tw0810.pp
blob: 04eb0bcf172574b61b819f917fa83718c82920fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
program bug;
var i:byte;
    e:extended;
    s:string;
begin
e:=103; (*1003,100003,1000003*)
for i:=0 to 17 do
    begin
    str(e:0:i,s);
    writeln(s);
    end;

end.