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

	print  a
}

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

function bar(c)
{
	c = 12
}