aboutsummaryrefslogtreecommitdiff
path: root/check/for.p
blob: 5391c8c962dc7c44b2ce952053016a008415d4f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
program main ( input, output );

        var a, b,c: integer;
begin

	a := 1;
	(* test *)
	for c := 0 to 10 do begin
		for a:= 10 downto 0 do b := a - c
	end
end.