aboutsummaryrefslogtreecommitdiff
path: root/pkg/ecl/errtest/recursion.cl
blob: 2b66c27f08725957d1bcc8f6c019c470c31f27db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#{ RECURSION.CL -- Test CL calling recursion.

procedure recursion (level)

int	level

begin
	if (level == 0)
	    i = 0
	else
	    i = level
	recur0 (i)
end