aboutsummaryrefslogtreecommitdiffstats
path: root/test/paramuninitglobal.awk
blob: 0d7989d9fe54f57014e5d0a2deb6883faf4f3527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function f(x)
{
	a = 10
	x = 90
	print x
	print a
	a++
	x++
	print x
}

BEGIN {
	f(a)
	print a
}