Codebase list libmawk / bullseye-backports/main src / example_apps / 25_set_array / test.awk
bullseye-backports/main

Tree @bullseye-backports/main (Download .tar.gz)

test.awk @bullseye-backports/mainraw · history · blame

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

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