summaryrefslogtreecommitdiff
path: root/test/aadelete2.awk
blob: 54bd49a75a49d767c58eb617e4632078dffc6bdc (plain)
1
2
3
4
5
6
7
8
9
10
BEGIN {
	a[1][1]=1;
	b[1][1]=11;
#	delete b[a[1]][1];
	f(b, a)
}

function f(arr, s) {
	delete arr[s[1]][1]
}