aboutsummaryrefslogtreecommitdiffstats
path: root/test/stupid1.awk
blob: 9881ac6aaac40cb2c419290f0b0fc06ef84a96bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BEGIN {
	abc("varname")
	varname
}

func abc(n)
{
	if (n in SYMTAB) {
		print "before"
		is = SYMTAB[n]
		print "after"
	}
}