Codebase list libmawk / upstream/latest src / example_apps / 15_get_array / test.awk
upstream/latest

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

test.awk @upstream/latestraw · history · blame

BEGIN {
	print "script: BEGIN"
	bar["wow"] = 42
}

{
	print "script: input: \"" $0 "\""
	bar["wow"]++
}

END {
	print "script: END"
}