aboutsummaryrefslogtreecommitdiffstats
path: root/test/forref.awk
blob: 5f9ad350d196d70e4836e5beab0d1099c8ce2867 (plain)
1
2
3
4
5
6
7
8
9
10
11
BEGIN {
	names[1] = "s"
	names[2] = "m"
	for (i in names) {
		x[names[i]] = i
		print i, names[i], x[names[i]]
	}
	print x["s"]
#	adump(x)
#	adump(names)
}