Codebase list libmawk / debian/latest src / example_apps / 25_set_array / test.awk
debian/latest

Tree @debian/latest (Download .tar.gz)

test.awk @debian/latestraw · history · blame

1
2
3
4
5
6
7
8
BEGIN {
	bar["wow"] = 42
}

END {
	for(idx in bar)
		print "script:", idx, bar[idx]
}