Blame test/arryref4.awk

Packit 575503
BEGIN {
Packit 575503
	foo(a)
Packit 575503
Packit 575503
	print  a
Packit 575503
}
Packit 575503
Packit 575503
function foo(b)
Packit 575503
{
Packit 575503
	a = "global"
Packit 575503
	b[2] = "local"
Packit 575503
#	bar(b)
Packit 575503
}
Packit 575503
Packit 575503
function bar(c)
Packit 575503
{
Packit 575503
	c = 12
Packit 575503
}