aboutsummaryrefslogtreecommitdiff
path: root/check/code-gen/proc.p
blob: 6d43ebfbf9b7e9846a3a9588b3494a369ac16c9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
program main (output);
        procedure bar (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o: integer);
        begin
                write(a);
                write(b);
                write(c);
                write(d);
                write(e);
                write(f);
                write(g);
                write(h);
                write(i);
                write(j);
                write(k);
                write(l);
                write(m);
                write(n);
                write(o)
        end;
begin
        bar(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15)
end.