1function f(a,	i) {
2	for (i in a)
3		delete a[i]
4	if (a == 0)
5		print 7
6}
7
8BEGIN {
9	f(arr)
10}
11