summaryrefslogtreecommitdiff
path: root/test/id.awk
blob: 9c2ae2d4fae5bd5729fc1de81692cdfe2f31cab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function function1()
{
	print "function1"
}

BEGIN { 
	an_array[1] = 1

	for (i in PROCINFO["identifiers"])
	      printf("%s -> %s\n", i, PROCINFO["identifiers"][i]) | "sort"
	close("sort")
}