Codebase list libmawk / fresh-releases/upstream src / example_apps / 15_get_array / test.awk
fresh-releases/upstream

Tree @fresh-releases/upstream (Download .tar.gz)

test.awk @fresh-releases/upstreamraw · history · blame

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

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

END {
	print "script: END"
}