aboutsummaryrefslogtreecommitdiffstats
path: root/test/nsfuncrecurse.awk
blob: 1a006cebef2b42d636324a150ac3ac54a29cc026 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@namespace "foo"

function test(v)
{
	if (v <= 0)
		return

	Level++
	v--
	printf("Level = %d, v = %d\n", Level, v)
	test(v)
	Level--
}

BEGIN {
	Level = 0
	test(5)
}