summaryrefslogtreecommitdiff
path: root/test/arryref3.awk
blob: e234ee52b168f47d274119db043aa9eb5e9afadc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
BEGIN {
	foo(a)

	for (i in a)
		print i, a[i]
}

function foo(b)
{
	a[1] = "global"
	b[2] = "local"
	bar(b)
}

function bar(c)
{
	c = 12
}